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 { struct iOS_ContentView: View {
var body: some View { var body: some View {
VStack { VStack {
Image(systemName: "globe") Image("AppIconImage")
.imageScale(.large) .resizable()
.foregroundStyle(.tint) .aspectRatio(contentMode: .fit)
Text("Hello, world!") .frame(maxHeight: 96)
Text("Ghostty")
} }
.padding() .padding()
} }