mirror of
https://github.com/lumaa-dev/BubbleApp.git
synced 2025-02-09 00:18:41 +01:00
18 lines
350 B
Swift
18 lines
350 B
Swift
//Made by Lumaa
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct ThreadedApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
.tint(Color(uiColor: .label))
|
|
.background(Color.appBackground)
|
|
.onAppear {
|
|
HapticManager.prepareHaptics()
|
|
}
|
|
}
|
|
}
|
|
}
|