conversations-classic-ios/ConversationsClassic/View/Main/Settings/SettingsScreen.swift

17 lines
345 B
Swift
Raw Normal View History

2024-08-19 07:34:46 +00:00
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)
}
}
}