Initial Commit

This commit is contained in:
2023-09-02 14:24:53 +02:00
commit 752a1f8b32
11 changed files with 527 additions and 0 deletions

View File

@ -0,0 +1,26 @@
//
// ContentView.swift
// velibtracker
//
// Created by Louis Gallet on 02/09/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()
}
}