mirror of
https://github.com/phranck/TUIkit.git
synced 2026-06-20 09:54:37 +00:00
Update IDETemplateMacros.plist and replace headers in 136 Swift files with
new format: 🖥️ TUIKit — Terminal UI Kit for Swift. Remove sdsd.swift template draft.
25 lines
459 B
Swift
25 lines
459 B
Swift
// 🖥️ TUIKit — Terminal UI Kit for Swift
|
|
// main.swift
|
|
//
|
|
// Created by LAYERED.work
|
|
// CC BY-NC-SA 4.0
|
|
// 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()
|