[fix] Fix tablet full-screen mode bug
This commit is contained in:
@@ -22,7 +22,7 @@ _🚀This is the client of the multimedia server Abyss, which can also be extend
|
||||
## TODO List
|
||||
|
||||
### High Priority
|
||||
- [ ] Fix tablet full-screen mode bug
|
||||
- [x] Fix tablet full-screen mode bug
|
||||
- [ ] Hide private key after user input
|
||||
- [ ] Replace Android robot icon with custom design
|
||||
- [ ] Configure server baseURL in client settings
|
||||
|
||||
@@ -716,9 +716,11 @@ fun VideoPlayerLandscape(videoPlayerViewModel: VideoPlayerViewModel)
|
||||
}
|
||||
|
||||
ToggleFullScreen(true)
|
||||
Box(Modifier.fillMaxSize())
|
||||
{
|
||||
Box(
|
||||
modifier = Modifier
|
||||
.background(Color.Black)
|
||||
.background(Color.Black).align(Alignment.Center)
|
||||
)
|
||||
{
|
||||
AndroidView(
|
||||
@@ -906,6 +908,7 @@ fun VideoPlayerLandscape(videoPlayerViewModel: VideoPlayerViewModel)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Composable
|
||||
|
||||
Reference in New Issue
Block a user