added js backend
This commit is contained in:
22
watch-untis Watch App/ContentView.swift
Normal file
22
watch-untis Watch App/ContentView.swift
Normal file
@@ -0,0 +1,22 @@
|
||||
//
|
||||
// ContentView.swift
|
||||
// new-app Watch App
|
||||
//
|
||||
// Created by Theis on 23.02.26.
|
||||
//
|
||||
|
||||
import SwiftUI
|
||||
|
||||
struct WatchContentView: View {
|
||||
var body: some View {
|
||||
ScrollView {
|
||||
VStack(alignment: .leading) {
|
||||
Text("Lesson1")
|
||||
Text("Lesson2")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#Preview {
|
||||
WatchContentView()
|
||||
}
|
||||
@@ -11,7 +11,7 @@ import SwiftUI
|
||||
struct new_app_Watch_AppApp: App {
|
||||
var body: some Scene {
|
||||
WindowGroup {
|
||||
ContentView()
|
||||
WatchContentView()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user