From 0538ecfabde1883b71971cf0ce62a4d14ff072cd Mon Sep 17 00:00:00 2001 From: Fuwn Date: Thu, 20 Feb 2025 02:40:26 -0800 Subject: feat: Development commit --- Sora/Views/SettingsView.swift | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) (limited to 'Sora/Views/SettingsView.swift') 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") } } -- cgit v1.2.3