Button 我将使用Ionic框架在导航栏中插入两个按钮

Button 我将使用Ionic框架在导航栏中插入两个按钮,button,uinavigationcontroller,icons,uinavigationbar,ionic-framework,Button,Uinavigationcontroller,Icons,Uinavigationbar,Ionic Framework,我使用的是爱奥尼亚框架,我会在导航栏中插入两个按钮 <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"><

我使用的是爱奥尼亚框架,我会在导航栏中插入两个按钮

<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>

我想得到两个图标在下面的图像接近作为两个不同的功能。 我该怎么办


只需添加另一个按钮

<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>