How can i change the default window dimensions for Kotlin Compose Desktop?
I want to change the size of the window of my Kotlin Compose Desktop application so when it launches its 720p instead of the odd square it is by default. How can i do that?
How to disable status bar in Kotlin Multiplatform?
I’m learning Kotlin Multiplatform by doing a small app that will run on Andorid/IOS/Desktop. It shares all logic and UI.
How to disabble status bar in Kotlin Multiplatform?
I’m learning Kotlin Multiplatform by doing a small app that will run on Andorid/IOS/Desktop. It shares all logic and UI.
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.