Hello to everyone.
I’ve been trying with the splitter and the back button, both using the same page.
For example:
<ons-splitter>
<ons-splitter-side id="menuSptt" side="left" width="220px" collapse swipeable>
<ons-page>
<ons-list>
<ons-list-item onclick="fn.load('home.html')" tappable>
Home
<ons-list-item tappable>
About
</ons-list-item>
</ons-list>
</ons-page>
</ons-splitter-side>
<ons-splitter-content id="contenidoSptt" page="home.html"></ons-splitter-content>
</ons-splitter>
<ons-navigator swipeable id="myNavigator" page="home.html"></ons-navigator>
<template id="home.html">
<ons-page id="home">
Home 1.0
</ons-page>
</template>
I couldn’t make it work. The idea is bringing a list to home template and use the back button once the user goes inside an element.
Could anyone tell me how to fix it?
Thank you !