File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
Jetcaster/mobile/src/main/java/com/example/jetcaster/ui Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -395,9 +395,7 @@ private fun HomeScreen(
395395
396396 val coroutineScope = rememberCoroutineScope()
397397 val snackbarHostState = remember { SnackbarHostState () }
398- HomeScreenBackground (
399- // modifier = modifier.windowInsetsPadding(WindowInsets.navigationBars),
400- ) {
398+ HomeScreenBackground {
401399 Scaffold (
402400 topBar = {
403401 Column {
Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ fun PlayerContentWithBackground(
217217 displayFeatures = displayFeatures,
218218 onBackPress = onBackPress,
219219 onAddToQueue = onAddToQueue,
220- playerControlActions = playerControlActions
220+ playerControlActions = playerControlActions,
221221 )
222222 }
223223}
@@ -296,7 +296,7 @@ fun PlayerContent(
296296 endYPercentage = 0f ,
297297 )
298298 .windowInsetsPadding(WindowInsets .safeDrawing)
299- .padding(horizontal = 8 .dp)
299+ .padding(horizontal = 8 .dp),
300300 ) {
301301 TopAppBar (
302302 onBackPress = onBackPress,
@@ -356,7 +356,7 @@ private fun PlayerContentRegular(
356356 endYPercentage = 0f ,
357357 )
358358 .windowInsetsPadding(WindowInsets .safeDrawing)
359- .padding(horizontal = 8 .dp)
359+ .padding(horizontal = 8 .dp),
360360 ) {
361361 TopAppBar (
362362 onBackPress = onBackPress,
You can’t perform that action at this time.
0 commit comments