Hide controls if media is playing in the tv ui

This commit is contained in:
2026-03-30 08:47:49 +02:00
parent be350ff585
commit 52593237f4

View File

@@ -131,7 +131,7 @@ fun TvPlayerScreen(
}
LaunchedEffect(uiState.isPlaying) {
if (uiState.isPlaying) showQueuePanel = false
if (uiState.isPlaying) viewModel.hideControls()
}
val hiddenControlFocusRequester = remember { FocusRequester() }