Add navbar link in Ionic tab child view -


i have child view in tabbed ionic app this:

<ion-view view-title="my view">   <ion-content>     page content   </ion-content> </ion-view> 

how add link in navbar? want "edit" link on right side of navbar.

put following code between <ion-view> , <ion-content>:

  <ion-nav-buttons side="right">     <button class="button button-icon button-clear" ng-click="yourbuttonfunction()">       <i class="icon ion-edit"></i> edit     </button>   </ion-nav-buttons> 

here official docs it


Comments

Popular posts from this blog

sublimetext3 - what keyboard shortcut is to comment/uncomment for this script tag in sublime -

java - No use of nillable="0" in SOAP Webservice -

ubuntu - Laravel 5.2 quickstart guide gives Not Found Error -