first commit
This commit is contained in:
17
SodaLive/Sources/App/SodaLiveApp.swift
Normal file
17
SodaLive/Sources/App/SodaLiveApp.swift
Normal file
@@ -0,0 +1,17 @@
|
||||
//
|
||||
// SodaLiveApp.swift
|
||||
// SodaLive
|
||||
//
|
||||
// Created by klaus on 2023/08/09.
|
||||
//
|
||||
|
||||
import SwiftUI
|
||||
|
||||
@main
|
||||
struct SodaLiveApp: App {
|
||||
var body: some Scene {
|
||||
WindowGroup {
|
||||
ContentView()
|
||||
}
|
||||
}
|
||||
}
|
26
SodaLive/Sources/ContentView.swift
Normal file
26
SodaLive/Sources/ContentView.swift
Normal file
@@ -0,0 +1,26 @@
|
||||
//
|
||||
// ContentView.swift
|
||||
// SodaLive
|
||||
//
|
||||
// Created by klaus on 2023/08/09.
|
||||
//
|
||||
|
||||
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()
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user