https://kotlinlang.org logo
#compose-ios
Title
# compose-ios
r

Rafs

10/26/2023, 8:51 PM
is there a way to prevent the soft keyboard from pushing the contents up the screen?
1
a

Alexander Zhirkevich

10/26/2023, 9:08 PM
Copy code
ComposeUIViewController(
    configure = {
        onFocusBehavior = OnFocusBehavior.DoNothing
    }
)
1
👍 4
thank you color 1
3 Views