Skip to content

Commit

Permalink
Make player fill the screen in demo
Browse files Browse the repository at this point in the history
  • Loading branch information
MattiasBuelens committed Jul 13, 2023
1 parent 0a393a0 commit 7407169
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@ fun MainContent() {
}
)
}, content = { padding ->
val playerModifier = Modifier.padding(padding)
val playerModifier = Modifier
.padding(padding)
.fillMaxSize(1f)
when (theme) {
PlayerTheme.Default -> {
DefaultUI(
Expand Down

0 comments on commit 7407169

Please sign in to comment.