conversations-classic-ios/ConversationsClassic/View/Main/Settings/SettingsScreen.swift
2024-08-19 11:44:49 +02:00

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)
}
}
}