fitness_app/FitnessApp/ContentView.swift
Matt Bruce 9b0287f038 initial start screen
Signed-off-by: Matt Bruce <mbrucedogs@gmail.com>
2024-12-20 13:19:36 -06:00

25 lines
389 B
Swift

//
// ContentView.swift
// FitnessApp
//
// Created by Matt Bruce on 12/20/24.
//
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Fitness App!")
}
.padding()
}
}
#Preview {
ContentView()
}