Hello,
I can load web views with cordova
cordova.InAppBrowser.open
Into framework 7 but when I do this I lose the navbar, is there a way to load a web page into the app while keeping the original navbar please?
Thank you.
Hello,
I can load web views with cordova
cordova.InAppBrowser.open
Into framework 7 but when I do this I lose the navbar, is there a way to load a web page into the app while keeping the original navbar please?
Thank you.
Probably no, because it opens on top of the webview, but you can check its “presentation”, didn’t try it but maybe will help https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-inappbrowser/#cordovainappbrowseropen
Put an iframe in your .page-content element. Works fine in my app.
Thanks, I think I might simply try to create a register form in my app and the required API for it. I was trying to save some work by using my registration form on the website but I believe I might have to do this separately.
Thanks for both suggestions.