Add padding to the followers list

Closes: #162
This commit is contained in:
Amos Elliston
2022-12-26 19:32:50 -08:00
committed by William Casarin
parent cabe3cf791
commit 94ad5ad366

View File

@@ -12,7 +12,7 @@ struct FollowUserView: View {
let damus_state: DamusState let damus_state: DamusState
var body: some View { var body: some View {
HStack(alignment: .top) { HStack {
let pmodel = ProfileModel(pubkey: target.pubkey, damus: damus_state) let pmodel = ProfileModel(pubkey: target.pubkey, damus: damus_state)
let followers = FollowersModel(damus_state: damus_state, target: target.pubkey) let followers = FollowersModel(damus_state: damus_state, target: target.pubkey)
let pv = ProfileView(damus_state: damus_state, profile: pmodel, followers: followers) let pv = ProfileView(damus_state: damus_state, profile: pmodel, followers: followers)
@@ -25,6 +25,8 @@ struct FollowUserView: View {
ProfileName(pubkey: target.pubkey, profile: profile, contacts: damus_state.contacts, show_friend_confirmed: false) ProfileName(pubkey: target.pubkey, profile: profile, contacts: damus_state.contacts, show_friend_confirmed: false)
if let about = profile.flatMap { $0.about } { if let about = profile.flatMap { $0.about } {
Text(about) Text(about)
.lineLimit(3)
.font(.footnote)
} }
} }
@@ -51,6 +53,7 @@ struct FollowersView: View {
FollowUserView(target: .pubkey(pk), damus_state: damus_state) FollowUserView(target: .pubkey(pk), damus_state: damus_state)
} }
} }
.padding()
} }
.navigationBarTitle("\(Profile.displayName(profile: profile, pubkey: whos))'s Followers") .navigationBarTitle("\(Profile.displayName(profile: profile, pubkey: whos))'s Followers")
.onAppear { .onAppear {
@@ -78,6 +81,7 @@ struct FollowingView: View {
FollowUserView(target: .pubkey(pk), damus_state: damus_state) FollowUserView(target: .pubkey(pk), damus_state: damus_state)
} }
} }
.padding()
} }
.onAppear { .onAppear {
following.subscribe() following.subscribe()