diff options
| author | Fuwn <[email protected]> | 2025-09-22 02:05:34 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-09-22 02:05:34 -0700 |
| commit | 3e82a4422fadfadd8b6bd4b41b9a41d768e70ac1 (patch) | |
| tree | f0287230c16ab8a30e15588314f32238b0803cb9 /Sora/Views/Settings/SettingsView.swift | |
| parent | feat: Development commit (diff) | |
| download | sora-testing-3e82a4422fadfadd8b6bd4b41b9a41d768e70ac1.tar.xz sora-testing-3e82a4422fadfadd8b6bd4b41b9a41d768e70ac1.zip | |
feat: Development commit
Diffstat (limited to 'Sora/Views/Settings/SettingsView.swift')
| -rw-r--r-- | Sora/Views/Settings/SettingsView.swift | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/Sora/Views/Settings/SettingsView.swift b/Sora/Views/Settings/SettingsView.swift index 3315301..6c034e3 100644 --- a/Sora/Views/Settings/SettingsView.swift +++ b/Sora/Views/Settings/SettingsView.swift @@ -4,16 +4,18 @@ struct SettingsView: View { var body: some View { NavigationStack { Form { - Section(header: Text("Provider")) { - SettingsProviderView() - } + Section(header: Text("Appearance & Behavior")) { + NavigationLink(destination: SettingsSectionProviderView()) { + Text("Provider Settings") + } - Section(header: Text("Thumbnails")) { - SettingsThumbnailsView() - } + NavigationLink(destination: SettingsSectionThumbnailsView()) { + Text("Thumbnail Settings") + } - Section(header: Text("Details")) { - SettingsDetailsView() + NavigationLink(destination: SettingsSectionDetailsView()) { + Text("Details Settings") + } } Section(header: Text("Search")) { |