Hello,
I have an InputField. When the user clicks on it on android, the layout resize to let the keyboard take the bottom of the screen.
How to prevent this? I.e: How to keep the canvas size the same, and show the keyboard on top of it, instead of under it.
I tried logging width and height. Only PlatformInfo.CanvasDeviceWidth/Height are changing when the resize happen (+ Browser fires OnResize). So I know when it happens, but I don't know how to revert this resize from code?
ViewportWidth/Height, LayoutWidth/Height, OriginalViewportWidth/Height all show no change during resize.
Thank you.