From 83b004b6e10e5bc13fd5220ccfaa863406a18fc5 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 13 Jan 2024 22:26:51 -0800 Subject: [PATCH] macos: show ghostty icon on main app loading --- macos/Sources/App/iOS/iOSApp.swift | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/macos/Sources/App/iOS/iOSApp.swift b/macos/Sources/App/iOS/iOSApp.swift index da5a9fe5b..d571a490b 100644 --- a/macos/Sources/App/iOS/iOSApp.swift +++ b/macos/Sources/App/iOS/iOSApp.swift @@ -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() }