Improve iPad UI behavior and settings layout

- Fix status bar visibility on iPad to respect window fullscreen state
- Adjust settings view minimum heights for better content display
This commit is contained in:
Arkadiusz Fal
2025-11-15 20:12:30 +01:00
parent 21da42f23b
commit 3588bbd7e7
2 changed files with 6 additions and 6 deletions

View File

@@ -412,7 +412,7 @@ struct VideoPlayerView: View {
if !newValue { player.controls.hideOverlays() }
}
#if os(iOS)
.statusBar(hidden: fullScreenPlayer)
.statusBar(hidden: Constants.isIPad ? Constants.isWindowFullscreen : fullScreenPlayer)
.backport
.toolbarBackground(colorScheme == .light ? .white : .black)
.backport