feat: enhance models and services with Sendable conformance, add preview data for debugging

This commit is contained in:
2026-03-14 07:18:35 +07:00
parent a4b475b13f
commit 758f5ec05f
17 changed files with 851 additions and 198 deletions
+11
View File
@@ -60,6 +60,17 @@ struct LoginView: View {
}
.font(.footnote)
#if DEBUG
Button {
Task { await authViewModel.enterPreviewMode() }
} label: {
Label("Демо-режим", systemImage: "play.circle.fill")
.font(.footnote)
.foregroundStyle(.secondary)
}
.padding(.top, 8)
#endif
Spacer()
}
.padding()