We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d7de1c commit 7b31be3Copy full SHA for 7b31be3
1 file changed
DevLog/UI/Profile/ProfileView.swift
@@ -18,7 +18,12 @@ struct ProfileView: View {
18
ScrollView {
19
LazyVStack(alignment: .leading, spacing: 16) {
20
HStack {
21
- CacheableImage(url: viewModel.state.avatarURL)
+ CacheableImage(url: viewModel.state.avatarURL) {
22
+ Image(systemName: "person.crop.circle.fill")
23
+ .resizable()
24
+ .scaledToFill()
25
+ .foregroundStyle(Color(.systemGray2))
26
+ }
27
.frame(width: 60, height: 60)
28
.cornerRadius(30)
29
.foregroundStyle(Color.gray)
0 commit comments