macos: show ghostty icon on main app loading

This commit is contained in:
Mitchell Hashimoto
2024-01-13 22:26:51 -08:00
parent 48af1c6c99
commit 83b004b6e1

View File

@ -12,10 +12,11 @@ struct Ghostty_iOSApp: App {
struct iOS_ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
Image("AppIconImage")
.resizable()
.aspectRatio(contentMode: .fit)
.frame(maxHeight: 96)
Text("Ghostty")
}
.padding()
}