17 lines
345 B
Swift
17 lines
345 B
Swift
import SwiftUI
|
|
|
|
struct SettingsScreen: View {
|
|
var body: some View {
|
|
ZStack {
|
|
// bg
|
|
Color.Material.Background.light
|
|
.ignoresSafeArea()
|
|
|
|
// content
|
|
Text("Soon!")
|
|
.font(.head1l)
|
|
.foregroundColor(.Material.Elements.active)
|
|
}
|
|
}
|
|
}
|