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
Post a Comment