How i can add nav button at another pages from index page?

Hi guys,
I want to make an app with map pages

  • index list
    – list view
    — content
    A pages content with on nav with left button Back, at right i want to add a button clear how i can do that ?
    Thank you

You can use <ion-nav-buttons> inside an <ion-view> to add buttons to the nav bar.

See the documentation:

<ion-nav-bar> </ion-nav-bar> <ion-nav-view> <ion-view> <ion-nav-buttons side="right"> <button class="button"> Clear </button> </ion-nav-buttons> <ion-content> Some super content here! </ion-content> </ion-view> </ion-nav-view>

Thank you, i got it