File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
features/home/impl/src/main/kotlin/io/element/android/features/home/impl Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -240,14 +240,19 @@ private fun HomeScaffold(
240
240
contentPadding = PaddingValues (
241
241
// FAB height is 56dp, bottom padding is 16dp, we add 8dp as extra margin -> 56+16+8 = 80,
242
242
// and include provided bottom padding
243
- bottom = 80 .dp + padding.calculateBottomPadding(),
244
- top = padding.calculateTopPadding()
243
+ // Disable contentPadding due to navigation issue using the keyboard
244
+ // See https://issuetracker.google.com/issues/436432313
245
+ bottom = 80 .dp, // + padding.calculateBottomPadding(),
246
+ // top = padding.calculateTopPadding()
245
247
),
246
248
modifier = Modifier
247
249
.padding(
248
250
PaddingValues (
249
251
start = padding.calculateStartPadding(LocalLayoutDirection .current),
250
252
end = padding.calculateEndPadding(LocalLayoutDirection .current),
253
+ // Remove these two lines once https://issuetracker.google.com/issues/436432313 has been fixed
254
+ bottom = padding.calculateBottomPadding(),
255
+ top = padding.calculateTopPadding()
251
256
)
252
257
)
253
258
.consumeWindowInsets(padding)
You can’t perform that action at this time.
0 commit comments