Initial Commit

This commit is contained in:
Pierre BOULC'H
2023-07-04 19:01:13 +02:00
commit 92e03bc310
14 changed files with 853 additions and 0 deletions

26
Luto/ContentView.swift Normal file
View File

@ -0,0 +1,26 @@
//
// 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()
}
}