- Fixed App Store icon display with ios-marketing idiom - Added iPad orientation support for multitasking - Added UILaunchScreen for iPad requirements - Removed unused BLE permissions and files from build Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
336 B
Swift
17 lines
336 B
Swift
import SwiftUI
|
|
|
|
@main
|
|
struct PayfritBeaconApp: App {
|
|
@StateObject private var appState = AppState()
|
|
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
RootView()
|
|
.environmentObject(appState)
|
|
}
|
|
}
|
|
}
|
|
|
|
extension Color {
|
|
static let payfritGreen = Color(red: 0.133, green: 0.698, blue: 0.294)
|
|
}
|