Hi :slightly_smiling_face: I’m having some trouble...
# compose
n
Hi 🙂 I’m having some trouble with paddings/page resize when keyboard is opened, I’m attaching a video of the problem. It looks like if the TextField is in the very bottom of the screen, the imePadding does not work correctly. I’m using AdjustResize in my Manifest and
Copy code
WindowCompat.setDecorFitsSystemWindows(window, false)
in MainActivity. My Column’s modifier is
Copy code
modifier = Modifier
                    .fillMaxSize()
                    .padding(horizontal = MaterialTheme.spacing.medium)
                    .padding(paddingValues)
                    .consumedWindowInsets(paddingValues)
                    .imePadding()
                    .verticalScroll(rememberScrollState())
(Modifier.systemBarsPadding() is in the NavHost)
j