diff options
Diffstat (limited to 'Sora/Views/SettingsViewMacOS.swift')
| -rw-r--r-- | Sora/Views/SettingsViewMacOS.swift | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/Sora/Views/SettingsViewMacOS.swift b/Sora/Views/SettingsViewMacOS.swift deleted file mode 100644 index 57d640c..0000000 --- a/Sora/Views/SettingsViewMacOS.swift +++ /dev/null @@ -1,32 +0,0 @@ -import SwiftUI - -struct SettingsViewMacOS: View { - var body: some View { - NavigationStack { - VStack(alignment: .leading) { - SettingsThumbnailsView() - - Spacer() - .frame(height: 25) - - SettingsDetailsView() - - Spacer() - .frame(height: 25) - - SettingsSearchView() - - Spacer() - .frame(height: 25) - - SettingsAttributionsView() - } - .padding() - } - } -} - -#Preview { - SettingsViewMacOS() - .environmentObject(Settings()) -} |