Framework7 App goes out of viewport after Facebook Share / WhatsApp Share / SMS

Hi,
When I use facebook share / whatsapp share / SMS plugin; the app screen goes out of its viewport when it comes back after completing the action e.g. we press in the app Share via SMS, the SMS app opens but when the SMS is sent and app comes back on the screen the content is out of place.
This happens with facebook login, google login plugins as well. This happens seldom.

Change keyboard plugin to https://github.com/ionic-team/cordova-plugin-ionic-keyboard

then add to config.xml

<platform name="ios">
        <preference name="KeyboardResizeMode" value="body" />
</platform>

then remove this lines in cordova-app.js:

window.Keyboard.shrinkView(false);
window.Keyboard.disableScrollingInShrinkView(true);
2 Likes

Thanks shastox,

I think the solution has worked. I will keep. checking it in next days and confirm.

Many Thanks.