Fix edge-to-edge layout issues (#367)

* Remove redundant setDecorFitsSystemWindows call

* Fix edge-to-edge layout issues
This commit is contained in:
Héctor de Isidro
2025-09-02 14:25:45 +02:00
committed by GitHub
parent e380408b28
commit bbf5918896
6 changed files with 32 additions and 39 deletions
@@ -20,6 +20,7 @@ import androidx.compose.ui.unit.sp
*/
@Composable
fun PermissionExplanationScreen(
modifier: Modifier,
permissionCategories: List<PermissionCategory>,
onContinue: () -> Unit
) {
@@ -27,7 +28,7 @@ fun PermissionExplanationScreen(
val scrollState = rememberScrollState()
Box(
modifier = Modifier.fillMaxSize()
modifier = modifier
) {
// Scrollable content
Column(