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