damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

commit 8ec1fa29b1442902094c358068596d8bfcfc8864
parent 81683f980ad6b772c48e2060569b2d6e51a6b0dd
Author: Joel Klabo <joelklabo@gmail.com>
Date:   Wed, 29 Mar 2023 19:18:43 -0700

Add a Divider in the Follows List for Large Screens

Changelog-Added: Add a Divider in the Follows List for Large Screens
Closes: #838

Diffstat:
Mdamus/Views/FollowingView.swift | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/damus/Views/FollowingView.swift b/damus/Views/FollowingView.swift @@ -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 {