diff options
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")) { |