I have some troubles resizing a dialog using imeIn...
# compose
c
I have some troubles resizing a dialog using imeInsets, getting a weird effect
message has been deleted
pressing the text field at the bottom will push the dialog up too far
the activity has
Copy code
WindowCompat.setDecorFitsSystemWindows(window, false)
and the manifest
android:windowSoftInputMode="adjustResize"
the dialog content is wrapped in
Copy code
Column(
                            modifier = Modifier
                                .navigationBarsPadding()
                                .imePadding()
                                .background(color = MaterialTheme.colors.surface)
I want the OK button / dialog bottom to align with the keyboard top