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