Browse Source

font adjustments to the following. Looking good

profile-edit
Sam DuBois 2 years ago
parent
commit
223908fb3a
  1. 1
      damus/Views/ProfileName.swift
  2. 4
      damus/Views/ProfileView.swift

1
damus/Views/ProfileName.swift

@ -147,7 +147,6 @@ struct EventProfileName: View {
.font(.subheadline)
} else {
Text(String(display_name ?? Profile.displayName(profile: profile, pubkey: pubkey)))
.foregroundColor(.black)
.font(.subheadline)
.fontWeight(.bold)
}

4
damus/Views/ProfileView.swift

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

Loading…
Cancel
Save