fix day count being wrong, minor updates

This commit is contained in:
neon443
2025-05-01 21:05:31 +01:00
parent 8ea1eda8f4
commit a08642bcb5
15 changed files with 87 additions and 28 deletions

View File

@@ -11,9 +11,6 @@ struct ArchiveView: View {
@ObservedObject var viewModel: EventViewModel
@State var showAddEvent: Bool = false
@State var hey: UUID = UUID()
init(viewModel: EventViewModel) {
self.viewModel = viewModel
}
var body: some View {
NavigationStack {
ZStack {
@@ -55,6 +52,7 @@ struct ArchiveView: View {
adding: true
)
.presentationDragIndicator(.visible)
.presentationBackground(.ultraThinMaterial)
}
}
}