21 lines
385 B
Swift
21 lines
385 B
Swift
import SwiftUI
|
|
|
|
struct SettingsScreen: View {
|
|
var body: some View {
|
|
ZStack {
|
|
// bg
|
|
Color.Material.Background.light
|
|
.ignoresSafeArea()
|
|
|
|
// content
|
|
Text("under construction...")
|
|
|
|
// tab bar
|
|
VStack {
|
|
Spacer()
|
|
SharedTabBar()
|
|
}
|
|
}
|
|
}
|
|
}
|