New Timeline

Switch to a new timeline style that has higher information density and
better image display
This commit is contained in:
William Casarin
2023-03-23 17:29:37 -06:00
parent 2e34230119
commit f84d4516db
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)
}
}