Revert "Revert "New Timeline""

This reverts commit f5ed9cd5d4.
This commit is contained in:
William Casarin
2023-03-26 09:35:53 -06:00
parent 963cb37762
commit 754ee254e9
15 changed files with 253 additions and 92 deletions

View File

@@ -37,7 +37,7 @@ struct InnerTimelineView: View {
EmptyTimelineView()
} else {
ForEach(events.filter(filter), id: \.id) { (ev: NostrEvent) in
EventView(damus: damus, event: ev)
EventView(damus: damus, event: ev, options: [.wide])
.onTapGesture {
nav_target = ev.inner_event ?? ev
navigating = true
@@ -49,7 +49,7 @@ struct InnerTimelineView: View {
}
}
}
.padding(.horizontal)
//.padding(.horizontal)
}
}