javascript - On-screen keyboard resizes app when an input box is selected Apache Cordova Visual Studio? -
i trying develop app apache cordova tools visual studio , believed had finished project until started using on device , on-screen keyboard re-sized entire app when popped up. application looks way until user selects input box , on-screen keyboard pops up, makes screen shrink compensate keyboard.
how can make keyboard overlaps layout present instead of re-sizing , making new one? can't seem find solutions on internet appreciated.
thanks
dustin - need use keyboard plug-in customize behavior. can find plug-in @ npm: https://www.npmjs.com/package/cordova-plugin-keyboard
the exact line of code give want is:
keyboard.shrinkview(false);
cheers,
kirupa
Comments
Post a Comment