Anyone facing extra white space over ime keyboard ...
# multiplatform
u
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
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
I managed to fix it. Use
Copy code
ComposeUIViewController(
        configure = {
            onFocusBehavior = OnFocusBehavior.DoNothing
        }
    )
I think this is a adjustResize issue
e
Thank you. I’ll try that!