Files
TUIkit/Sources/TUIkitExample/main.swift
T
phranck 95029184e7 Chore: Rename TUIKit to TUIkit
- Rename module, targets and products in Package.swift
- Rename directories: Sources/TUIkit, TUIkitExample, Tests/TUIkitTests
- Rename files: TUIkit.swift, TUIkit.docc/TUIkit.md
- Update all import statements, module-qualified calls, file headers
- Update doc comments, string literals and DocC articles
- Update CI workflow, README, .swiftlint.yml and markdown docs
- Merge platform badges into single combined badge in README
- Add "Example App auslagern" task to to-dos.md
2026-01-30 20:29:29 +01:00

26 lines
438 B
Swift

//
// main.swift
// TUIkitExample
//
// Entry point for the TUIkit example application.
//
// This app demonstrates TUIkit capabilities through various demo pages.
// Use the menu to navigate between demos.
//
import TUIkit
// MARK: - Main App
/// The main example application.
struct ExampleApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}
// Run the app
ExampleApp.main()