fmodf
b3b3b3aef7
Reviewed-on: narayana/conversations-classic-ios#1 Co-authored-by: fmodf <fmodf.ios@gmail.com> Co-committed-by: fmodf <fmodf.ios@gmail.com>
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)
|
|
}
|
|
}
|
|
}
|