I’m having trouble with the keyboard closing without recalculating the view (I get an empty space where the keyboard used to be and the tabs are above that). Normally I would use content.resize() but it’s not available in the tabs page. Any suggestions?
I think you could start by trying this…
<preference name="KeyboardResize" value="false" />
reference here: https://github.com/ionic-team/cordova-plugin-ionic-keyboard#keyboardresize
If that doesn’t work, you might be able to mess with the resize modes: https://github.com/ionic-team/cordova-plugin-ionic-keyboard#keyboardresizemode
Thanks Chris. Unfortunately I need the keyboardResize to be true most of the time. I found a solution to the problem however. The issue occurs when I navigate to another page while the keyboard was still visible so I closed the keyboard manually and put a timeout of 200ms before changing the page. Now it has enough time to recalculate the view before pushing another one on top.
1 Like
Glad you figured it out