18 lines
379 B
Swift
18 lines
379 B
Swift
import SwiftUI
|
|
|
|
struct SettingsView: View {
|
|
var body: some View {
|
|
ZStack {
|
|
Theme.background.ignoresSafeArea()
|
|
Text(String(localized: "tab.settings"))
|
|
.font(.title)
|
|
.foregroundStyle(Theme.primaryText)
|
|
}
|
|
.navigationTitle(String(localized: "tab.settings"))
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
SettingsView()
|
|
}
|