]>
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 | 11 | }.padding(8.0).frame(minWidth: 300, minHeight: 260) |
9be247c3 RBR |
12 | AboutSettings().tabItem { |
13 | Label("About", systemImage: "questionmark.circle.fill") | |
14 | }.padding(8.0).frame(minWidth: 300, minHeight: 260) | |
ba17de89 | 15 | }.padding(16.0) |
a4e80427 RBR |
16 | } |
17 | } | |
18 | ||
19 | #Preview { | |
20 | PreferencesScreen() | |
a4e80427 | 21 | } |