]>
Commit | Line | Data |
---|---|---|
a4e80427 RBR |
1 | import SwiftUI |
2 | import SwiftData | |
3 | ||
4 | struct PreferencesScreen: View { | |
a4e80427 RBR |
5 | var body: some View { |
6 | TabView { | |
7 | OutputSettings().tabItem { | |
8 | Label("Output", systemImage: "video.fill") | |
9 | }.padding(8.0) | |
10 | AdvancedSettings().tabItem { | |
11 | Label("Advanced", systemImage: "gear") | |
12 | }.padding(8.0) | |
c9b9e1d6 | 13 | }.padding(16.0).frame(minWidth: 300, minHeight: 250) |
a4e80427 RBR |
14 | } |
15 | } | |
16 | ||
17 | #Preview { | |
18 | PreferencesScreen() | |
a4e80427 | 19 | } |