Make custom mobile app act more like a browser.
Hi,
I create a custom mobile app in 7.2. Is it possible to make the App act more like a mobile browser with a navigation bar (back and forward buttons)?
In a test for iOS, I pinned the URL to the home screen. When I opened it, it acted like the custom app aka no navigation bar. When I edited the "pyMetaTags" it now has the navigation bar.
Code:
<pega:when test='pyIsMobile'>
<meta name="apple-mobile-web-app-capable" content="no">
<meta name="apple-touch-fullscreen" content="yes">
<meta name="format-detection" content="telephone=no">
<meta name="apple-mobile-web-app-capable" content="no">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
</pega:when>
Is there a rule that I can edit or lines that I could add to "pyMetaTag" so that the custom mobile app gains a navigation bar.
Thanks
I am not aware of any such rule that will let you get a navigation bar just like the browser. However this post does talk about how you could implement a Back button if you need to -
https://collaborate.pega.com/discussion/please-tell-me-indication-method-stagediagram
Thanks,
Sunny