Set window min width on macOS

This commit is contained in:
Arkadiusz Fal 2023-09-26 17:47:00 +02:00
parent 2dd1d2ac56
commit 5b2c94758b

View File

@ -167,6 +167,9 @@ struct ContentView: View {
#if os(iOS)
.statusBarHidden(player.playingFullScreen)
#endif
#if os(macOS)
.frame(minWidth: 1200)
#endif
}
@ViewBuilder var videoPlayer: some View {