Relative Content

Tag Archive for kotlinandroid-jetpack-composekotlin-multiplatform

Jetpack Compose TopBar is pushed up on keyboard show

I have a KMM project with shared UI.
I have a chat screen where there’s a top bar with chat info, list of messages and Input field to write new messages.
My problem is that when keyboard appears all the content is pushed up including TopAppBar.
And I want that only LazyColumn is resized and the TopBar is pinned.
Of course I have android:windowSoftInputMode=”adjustResize” in my manifest for AndroidApp
I read some similar issues described here in stackoverflow but none of them helped.