Skip to content

Commit 7b31be3

Browse files
authored
[#221] 애플을 통해 로그인했을 때 프로필 사진을 따로 마련한다
1 parent 6d7de1c commit 7b31be3

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

DevLog/UI/Profile/ProfileView.swift

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,12 @@ struct ProfileView: View {
1818
ScrollView {
1919
LazyVStack(alignment: .leading, spacing: 16) {
2020
HStack {
21-
CacheableImage(url: viewModel.state.avatarURL)
21+
CacheableImage(url: viewModel.state.avatarURL) {
22+
Image(systemName: "person.crop.circle.fill")
23+
.resizable()
24+
.scaledToFill()
25+
.foregroundStyle(Color(.systemGray2))
26+
}
2227
.frame(width: 60, height: 60)
2328
.cornerRadius(30)
2429
.foregroundStyle(Color.gray)

0 commit comments

Comments
 (0)