diff options
| author | Fuwn <[email protected]> | 2025-02-20 02:40:26 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-02-20 02:40:26 -0800 |
| commit | 0538ecfabde1883b71971cf0ce62a4d14ff072cd (patch) | |
| tree | 029f6d9cb58da3ce338e862f4d43104e36cacb54 /Sora/Views/SettingsView.swift | |
| parent | feat: Development commit (diff) | |
| download | sora-testing-0538ecfabde1883b71971cf0ce62a4d14ff072cd.tar.xz sora-testing-0538ecfabde1883b71971cf0ce62a4d14ff072cd.zip | |
feat: Development commit
Diffstat (limited to 'Sora/Views/SettingsView.swift')
| -rw-r--r-- | Sora/Views/SettingsView.swift | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/Sora/Views/SettingsView.swift b/Sora/Views/SettingsView.swift index 59685a5..668d31f 100644 --- a/Sora/Views/SettingsView.swift +++ b/Sora/Views/SettingsView.swift @@ -2,29 +2,27 @@ import SwiftUI struct SettingsView: View { var body: some View { - NavigationStack { - Form { - Section(header: Text("Thumbnails")) { - SettingsThumbnailsView() - } + Form { + Section(header: Text("Thumbnails")) { + SettingsThumbnailsView() + } - Section(header: Text("Details")) { - SettingsDetailsView() - } + Section(header: Text("Details")) { + SettingsDetailsView() + } - Section(header: Text("Search")) { - SettingsSearchView() - } + Section(header: Text("Search")) { + SettingsSearchView() + } - Section(header: Text("Attributions")) { - SettingsAttributionsView() - } + Section(header: Text("Attributions")) { + SettingsAttributionsView() } } - .navigationTitle("Settings") #if os(macOS) - .padding() + .formStyle(.grouped) #endif + .navigationTitle("Settings") } } |