damus

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

commit fb1f99e7283b2e1cc302fb94cde8cb045e6ffbfe
parent 031408dec3447edd4690c848e95f22438a6dd43a
Author: Ben Weeks <ben.weeks@outlook.com>
Date:   Sun, 15 Jan 2023 18:44:07 +0000

Fixed Jack's issue with homepage gap at the top.

Closes: #328
Changelog-Fixed: Fix padding issue at top of home timeline

Diffstat:
Mdamus/ContentView.swift | 2+-
Mdamus/Views/TimelineView.swift | 1+
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/damus/ContentView.swift b/damus/ContentView.swift @@ -103,7 +103,7 @@ struct ContentView: View { } .tabViewStyle(.page(indexDisplayMode: .never)) } - .safeAreaInset(edge: .top) { + .safeAreaInset(edge: .top, spacing: 0) { VStack(spacing: 0) { FiltersView //.frame(maxWidth: 275) diff --git a/damus/Views/TimelineView.swift b/damus/Views/TimelineView.swift @@ -52,6 +52,7 @@ struct InnerTimelineView: View { } } .padding(.horizontal) + .padding(.top,10) } }