mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-05-08 17:03:03 +00:00
27 lines
445 B
Swift
27 lines
445 B
Swift
import SwiftUI
|
|
|
|
@main
|
|
struct Ghostty_iOSApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
iOS_ContentView()
|
|
}
|
|
}
|
|
}
|
|
|
|
struct iOS_ContentView: View {
|
|
var body: some View {
|
|
VStack {
|
|
Image(systemName: "globe")
|
|
.imageScale(.large)
|
|
.foregroundStyle(.tint)
|
|
Text("Hello, world!")
|
|
}
|
|
.padding()
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
iOS_ContentView()
|
|
}
|