https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
u

लातों वाला भूत

10/27/2023, 6:05 PM
Anyone facing extra white space over ime keyboard with compose multiplatform in ios builds? This white space is unexplainable.
👌 2
@escodro Have you identified any solution to this?
e

escodro

10/30/2023, 1:17 PM
No. This only happened when I tried to set up the
imePadding()
on iOS. I ended up living the default iOS behavior instead. Tried this library, but the same issue happened: https://github.com/mori-atsushi/insetsx
u

लातों वाला भूत

10/30/2023, 4:20 PM
I managed to fix it. Use
Copy code
ComposeUIViewController(
        configure = {
            onFocusBehavior = OnFocusBehavior.DoNothing
        }
    )
I think this is a adjustResize issue
e

escodro

10/30/2023, 4:21 PM
Thank you. I’ll try that!
2 Views