Move settings + generation to sheets

This commit is contained in:
Christoph Hagen
2025-02-05 15:40:09 +01:00
parent 5abe6e1a9f
commit 156bbf77d1
32 changed files with 402 additions and 852 deletions

View File

@@ -0,0 +1,16 @@
import SwiftUI
struct LocalizedNavigationBarSettingsView: View {
@ObservedObject
var settings: LocalizedNavigationSettings
var body: some View {
VStack(alignment: .leading) {
StringPropertyView(
title: "Root URL",
text: $settings.rootUrl,
footer: "The url leading to the root page for the language")
}
}
}