MNN/apps/iOS/MNNLLMChat/MNNLLMiOS/MNNLLMiOSApp.swift

27 lines
527 B
Swift

//
// MNNLLMiOSApp.swift
// MNNLLMiOS
//
// Created by () on 2024/12/26.
//
import SwiftUI
@main
struct MNNLLMiOSApp: App {
init() {
UIView.appearance().overrideUserInterfaceStyle = .light
let savedLanguage = LanguageManager.shared.currentLanguage
UserDefaults.standard.set([savedLanguage], forKey: "AppleLanguages")
UserDefaults.standard.synchronize()
}
var body: some Scene {
WindowGroup {
MainTabView()
}
}
}