|
@ -147,7 +147,9 @@ struct ProfileView: View { |
|
|
NavigationLink(destination: FollowingView(damus_state: damus_state, following: following_model, whos: profile.pubkey)) { |
|
|
NavigationLink(destination: FollowingView(damus_state: damus_state, following: following_model, whos: profile.pubkey)) { |
|
|
HStack { |
|
|
HStack { |
|
|
Text("\(profile.following)") |
|
|
Text("\(profile.following)") |
|
|
|
|
|
.font(.subheadline.weight(.medium)) |
|
|
Text("Following") |
|
|
Text("Following") |
|
|
|
|
|
.font(.subheadline) |
|
|
.foregroundColor(.gray) |
|
|
.foregroundColor(.gray) |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
@ -158,7 +160,9 @@ struct ProfileView: View { |
|
|
NavigationLink(destination: fview) { |
|
|
NavigationLink(destination: fview) { |
|
|
HStack { |
|
|
HStack { |
|
|
Text("\(followers.contacts.count)") |
|
|
Text("\(followers.contacts.count)") |
|
|
|
|
|
.font(.subheadline.weight(.medium)) |
|
|
Text("Followers") |
|
|
Text("Followers") |
|
|
|
|
|
.font(.subheadline) |
|
|
.foregroundColor(.gray) |
|
|
.foregroundColor(.gray) |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|