- Add SplashView, AuthContainerView with Login/Register/ForgotPassword - Add AuthViewModel with form validation - Add HomeView, ProfileView, ExploreView screens - Add APIService, AuthManager for networking - Add multi-language support (en/vi) - Add User model and extensions
21 lines
356 B
Swift
21 lines
356 B
Swift
//
|
|
// AppClientBaseSwiftApp.swift
|
|
// AppClientBaseSwift
|
|
//
|
|
// Main app entry point with splash screen
|
|
// Entry point chính của app với splash screen
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct AppClientBaseSwiftApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
SplashView {
|
|
ContentView()
|
|
}
|
|
}
|
|
}
|
|
}
|