Is there a way to show dark mode and light mode side by side in Xcode 11? I'm using UIKit / UIViewControllers.
( Using SwiftUI and previews this can be done but does not apply to UIKit:
#if DEBUG
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
Group {
ContentView()
.environment(\.colorScheme, .light)
ContentView()
.environment(\.colorScheme, .dark)
}
}
}
#endif
)