I am trying to achieve keyboard overlaps issue in jetpack compose kotlin. I searched and tried something on the internet but I couldnt solve it with those options. I added my manifest this
android:windowSoftInputMode="stateVisible|adjustResize"
like this
<activity
android:windowSoftInputMode="stateVisible|adjustResize"
... >
and I added getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN)
my mainActivity
but it still doesnt work properly. What should I do another ? can you have suggestion for this issue ?