another.im-ios/ConversationsClassic/View/Main/Settings/SettingsScreen.swift

17 lines
345 B
Swift
Raw Normal View History

2024-06-19 15:15:27 +00:00
import SwiftUI
struct SettingsScreen: View {
var body: some View {
ZStack {
// bg
2024-07-04 08:21:12 +00:00
Color.Material.Background.light
2024-06-19 15:15:27 +00:00
.ignoresSafeArea()
// content
Text("Soon!")
.font(.head1l)
.foregroundColor(.Material.Elements.active)
2024-06-19 15:15:27 +00:00
}
}
}