Files
luto/Luto/ContentView.swift
Pierre BOULC'H 92e03bc310 Initial Commit
2023-07-04 19:01:13 +02:00

27 lines
480 B
Swift

//
// ContentView.swift
// Luto
//
// Created by Pierre Boulc'h on 04/07/2023.
//
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()
}
}