]>
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") | |
ba17de89 | 9 | }.padding(8.0).frame(minWidth: 300, minHeight: 130) |
a4e80427 RBR |
10 | AdvancedSettings().tabItem { |
11 | Label("Advanced", systemImage: "gear") | |
ba17de89 RBR |
12 | }.padding(8.0).frame(minWidth: 300, minHeight: 260) |
13 | }.padding(16.0) | |
a4e80427 RBR |
14 | } |
15 | } | |
16 | ||
17 | #Preview { | |
18 | PreferencesScreen() | |
a4e80427 | 19 | } |