Files
Project_Velocity/iOS/App/VelocityApp.swift

12 lines
186 B
Swift

import SwiftUI
@main
struct VelocityApp: App {
var body: some Scene {
WindowGroup {
ContentView()
.preferredColorScheme(.dark)
}
}
}