Hello, using Kotlin and Compose, I created a Column in a Box, I use
The Column's Modifier uses

The Column's Modifier also uses

Is there some way to use some offset so when the keyboard appears, the Column goes lower?
So there is no space between the Login button and the keyboard
Regards
android:windowSoftInputMode="adjustResize" in the manifest fileThe Column's Modifier uses
.align(Alignment.BottomCenter) and .offset(y = (-110).dp), it looks like this:
The Column's Modifier also uses
.imePadding(), it looks like this when the keyboard is shown:
Is there some way to use some offset so when the keyboard appears, the Column goes lower?
So there is no space between the Login button and the keyboard
Regards