refactor: add color assets and update UI components

This commit is contained in:
2026-03-16 16:36:21 +07:00
parent 37b87ececd
commit d991d06f17
25 changed files with 532 additions and 160 deletions
+2 -2
View File
@@ -2,13 +2,13 @@ import SwiftUI
@main
struct MaydayApp: App {
@StateObject private var authViewModel = AuthViewModel()
@State private var authViewModel = AuthViewModel()
@UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate
var body: some Scene {
WindowGroup {
ContentView()
.environmentObject(authViewModel)
.environment(authViewModel)
}
}
}