Initial Commit
This commit is contained in:
commit
a098b17f71
13 changed files with 800 additions and 0 deletions
24
MSG Desktop/ContentView.swift
Normal file
24
MSG Desktop/ContentView.swift
Normal file
|
@ -0,0 +1,24 @@
|
|||
//
|
||||
// ContentView.swift
|
||||
// MSG Desktop
|
||||
//
|
||||
// Created by Chad Nelson on 3/8/25.
|
||||
//
|
||||
|
||||
import SwiftUI
|
||||
|
||||
struct ContentView: View {
|
||||
var body: some View {
|
||||
VStack {
|
||||
Image(systemName: "globe")
|
||||
.imageScale(.large)
|
||||
.foregroundStyle(.tint)
|
||||
Text("Hello, world!")
|
||||
}
|
||||
.padding()
|
||||
}
|
||||
}
|
||||
|
||||
#Preview {
|
||||
ContentView()
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue