mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-09-23 19:48:35 +00:00
macos: use xcodeproj
This commit is contained in:
19
macos/Sources/ContentView.swift
Normal file
19
macos/Sources/ContentView.swift
Normal file
@@ -0,0 +1,19 @@
|
||||
import SwiftUI
|
||||
|
||||
struct ContentView: View {
|
||||
var body: some View {
|
||||
VStack {
|
||||
Image(systemName: "globe")
|
||||
.imageScale(.large)
|
||||
.foregroundColor(.accentColor)
|
||||
Text("Hello, world!")
|
||||
}
|
||||
.padding()
|
||||
}
|
||||
}
|
||||
|
||||
struct ContentView_Previews: PreviewProvider {
|
||||
static var previews: some View {
|
||||
ContentView()
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user