Hello F7 team,
Thanks for the awesome framework!
I am working in ios version of a Cordova app. Due to Apple now is requiring it, I have installed cordova-plugin-wkwebview-engine but I had CORS problems in xhr call, so I have installed too cordova-plugin-wkwebview-file-xhr. Everything works well but back arrow in first level pages.
My main page has icons with links to level 1 pages and level 1 pages have links to second level pages.
If I go to a level 1 page and do click in back arrow, app goes to main menu but if I go to a second level page from level 1 page I can go back to level 1 page but I cannot go back from level 1 to main menu. This can be a little messy, sorry:
Main menu -> Level 1 page -> Main menu => OK
Main menu -> Level 1 page -> Level 2 page -> Level 1 page => OK
Main menu -> Level 1 page -> Level 2 page -> Level 1 page -> Main menu =>NOK (arrow back seems locked, no messages in dev tools)
The code of top bar in my pages is this:
<div class="navbar no-hairline no-shadow bg-color-tauste">
<div class="navbar-inner">
<div class="left">
<a href="#" class="link back text-color-white">
<i class="material-icons">arrow_back</i>
</a>
</div>
<div class="title sliding text-color-white">{{#if noticia.date}}{{noticia.date}}{{else}}Noticia{{/if}}</div>
</div>
</div>
I would appreciate very much your help. This is the only problem in the app, it worked perfectly with UIWebView and we now cannot submit to market.
Thanks in advance.