File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Jetcaster/mobile/src/main/java/com/example/jetcaster/ui/player Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ import androidx.compose.foundation.layout.safeDrawing
4343import androidx.compose.foundation.layout.size
4444import androidx.compose.foundation.layout.sizeIn
4545import androidx.compose.foundation.layout.systemBars
46+ import androidx.compose.foundation.layout.systemBarsPadding
4647import androidx.compose.foundation.layout.width
4748import androidx.compose.foundation.layout.windowInsetsPadding
4849import androidx.compose.foundation.layout.wrapContentSize
@@ -179,7 +180,7 @@ private fun PlayerScreen(
179180 }
180181 onAddToQueue()
181182 },
182- playerControlActions = playerControlActions
183+ playerControlActions = playerControlActions,
183184 )
184185 } else {
185186 FullScreenLoading ()
@@ -295,7 +296,7 @@ fun PlayerContent(
295296 startYPercentage = 1f ,
296297 endYPercentage = 0f ,
297298 )
298- .windowInsetsPadding( WindowInsets .safeDrawing )
299+ .systemBarsPadding( )
299300 .padding(horizontal = 8 .dp),
300301 ) {
301302 TopAppBar (
@@ -355,7 +356,7 @@ private fun PlayerContentRegular(
355356 startYPercentage = 1f ,
356357 endYPercentage = 0f ,
357358 )
358- .windowInsetsPadding( WindowInsets .safeDrawing )
359+ .systemBarsPadding( )
359360 .padding(horizontal = 8 .dp),
360361 ) {
361362 TopAppBar (
You can’t perform that action at this time.
0 commit comments