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:
Joel Klabo
2023-03-29 19:18:43 -07:00
committed by William Casarin
parent 81683f980a
commit 8ec1fa29b1

View File

@@ -33,6 +33,7 @@ struct FollowersView: View {
LazyVStack(alignment: .leading) {
ForEach(followers.contacts ?? [], id: \.self) { pk in
FollowUserView(target: .pubkey(pk), damus_state: damus_state)
Divider()
}
}
.padding()
@@ -45,7 +46,6 @@ struct FollowersView: View {
followers.unsubscribe()
}
}
}
struct FollowingView: View {