tirgei
10/24/2023, 9:06 PMKonstantin Tskhovrebov
10/25/2023, 3:34 PMandroid:windowSoftInputMode="adjustResize"
you will have the same on androidandroid:windowSoftInputMode="adjustPan"
b. don't use IME insets
2. the keyboard doesn't change your app screen
a. set android:windowSoftInputMode="adjustNothing"
b. ios
fun MainViewController(): UIViewController = ComposeUIViewController(
configure = {
onFocusBehavior = OnFocusBehavior.DoNothing
}
) { App() }
tirgei
10/25/2023, 5:16 PM