I would embed two buttons in the navbar using Ionic Framework

I am using Ionic Framework and I would insert two buttons in the navigation bar on this page only.

<ion-view title="{{title}}"> 
<ion-nav-buttons side="right">
    <a style="color: white;" class="button button-icon icon ion-folder" 
        ng-click="clickCreaElencoSpese()" ng-href="#/creaNotaSpese"></a> 
</ion-nav-buttons>

      

  

I would like to get two icons in the image below to close two different functions. How can I?

enter image description here

+3


source to share


1 answer


Just add another button.



<ion-nav-buttons side="right">
    <a style="color: white;" class="button button-icon icon ion-trash-a"></a> 
    <a style="color: white;" class="button button-icon icon ion-folder" ng-click="clickCreaElencoSpese()" ng-href="#/creaNotaSpese"></a> 
</ion-nav-buttons>

      

+8


source







All Articles