android: increase bottom padding on all screens

This commit is contained in:
Kavish Devar
2026-04-28 12:04:08 +05:30
parent 136e3e8995
commit 3a636e37a4

View File

@@ -77,7 +77,7 @@ fun StyledScaffold(
.clip(RoundedCornerShape(52.dp))
) { paddingValues ->
val topPadding = paddingValues.calculateTopPadding()
val bottomPadding = paddingValues.calculateBottomPadding()
val bottomPadding = paddingValues.calculateBottomPadding() + 16.dp
val startPadding = paddingValues.calculateLeftPadding(LocalLayoutDirection.current)
val endPadding = paddingValues.calculateRightPadding(LocalLayoutDirection.current)