I'm working on a Cordova Android app with Framework7 integration.
Is it possible to stack the same page multiple times in the page history?
Imagine I'm currently on the "category.html" page.
I need to navigate to nested subcategories, but since the category tree depth is unknown beforehand, I am updating and reusing the same "category.html" page with new content.
However, when I try:
app.router.navigate("/category.html");
Framework7 doesn't load the page because I'm already on "category.html". I attempted to reload the page like this:
app.router.navigate(app.views.main.router.url, {reloadCurrent: true, history:true, ignoreCache:true});
It does work, but the "new" category.html page isn't stacked in the page history (I want to be able to go back to the parent category from a subcategory).
Any ideas on how I can achieve that?