Add a Divider in the Follows List for Large Screens
Changelog-Added: Add a Divider in the Follows List for Large Screens Closes: #838
This commit is contained in:
committed by
William Casarin
parent
81683f980a
commit
8ec1fa29b1
@@ -33,6 +33,7 @@ struct FollowersView: View {
|
|||||||
LazyVStack(alignment: .leading) {
|
LazyVStack(alignment: .leading) {
|
||||||
ForEach(followers.contacts ?? [], id: \.self) { pk in
|
ForEach(followers.contacts ?? [], id: \.self) { pk in
|
||||||
FollowUserView(target: .pubkey(pk), damus_state: damus_state)
|
FollowUserView(target: .pubkey(pk), damus_state: damus_state)
|
||||||
|
Divider()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.padding()
|
.padding()
|
||||||
@@ -45,7 +46,6 @@ struct FollowersView: View {
|
|||||||
followers.unsubscribe()
|
followers.unsubscribe()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
struct FollowingView: View {
|
struct FollowingView: View {
|
||||||
|
|||||||
Reference in New Issue
Block a user