tirgei
10/24/2023, 9:06 PMKonstantin Tskhovrebov
10/25/2023, 3:34 PMandroid:windowSoftInputMode="adjustResize"
you will have the same on androidKonstantin Tskhovrebov
10/25/2023, 3:39 PMandroid: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() }
Konstantin Tskhovrebov
10/25/2023, 3:40 PMtirgei
10/25/2023, 5:16 PM