damus

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

commit 1d5af6ca5c67d25c90ee09c5f34a5f2b29e90344
parent f81b2b677f03b00ba0182dc443995ff0aa505901
Author: Daniel D’Aquino <daniel@daquino.me>
Date:   Fri, 18 Oct 2024 16:45:36 -0700

Remove event details from full screen carousel

Changelog-Changed: Removed event contents from full screen media carousel for cleaner view
Signed-off-by: Daniel D’Aquino <daniel@daquino.me>

Diffstat:
Mdamus/Views/NoteContentView.swift | 10+---------
1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/damus/Views/NoteContentView.swift b/damus/Views/NoteContentView.swift @@ -119,15 +119,7 @@ struct NoteContentView: View { } func fullscreen_preview(dismiss: @escaping () -> Void) -> some View { - VStack { - EventView(damus: damus_state, event: self.event, options: .embedded_text_only) - .padding(.top) - } - .background(.thickMaterial) - .onTapGesture(perform: { - damus_state.nav.push(route: Route.Thread(thread: .init(event: self.event, damus_state: damus_state))) - dismiss() - }) + EmptyView() } func MainContent(artifacts: NoteArtifactsSeparated) -> some View {