mirror of
https://github.com/phranck/TUIkit.git
synced 2026-06-20 09:54:37 +00:00
- 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
26 lines
438 B
Swift
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()
|