import SwiftUI struct PreferencesScreen: View { var body: some View { TabView { OutputSettings().tabItem { Label("Output", systemImage: "video.fill") }.padding(8.0).frame(minWidth: 300, minHeight: 130) AdvancedSettings().tabItem { Label("Advanced", systemImage: "gear") }.padding(8.0).frame(minWidth: 300, minHeight: 260) AboutSettings().tabItem { Label("About", systemImage: "questionmark.circle.fill") }.padding(8.0).frame(minWidth: 300, minHeight: 260) }.padding(16.0) } } #Preview { PreferencesScreen() }