Sesame-iOS/Sesame-Watch Watch App/SettingsView.swift
2023-08-07 15:57:09 +02:00

20 lines
436 B
Swift

import SwiftUI
struct SettingsView: View {
var body: some View {
ScrollView {
VStack {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
.navigationTitle("Settings")
}
}
struct SettingsView_Previews: PreviewProvider {
static var previews: some View {
SettingsView()
.previewDevice("Apple Watch Series 7 - 41mm")
}
}