2016-05-09 7 views

答えて

0

あなたのスクリーンショットで記述されているすべてのタブのボタンを追加する<ion-nav-buttons class="button-bar"></ion-nav-buttons>ディレクティブを使用することができます。 ui-sref-activeディレクティブと一緒にui-srefがアクティブ状態でのタブにフォーカスがあることを確認する

<ion-nav-buttons class="button-bar" side="left"> 
    <a class="button" 
    ui-sref-active-eq="active" 
    ui-sref="path1"> 
    Label 1 
    </a> 
    <a class="button" 
    ui-sref-active-eq="active" 
    ui-sref="path2"> 
    Label 2 
    </a> 
    <a class="button" 
    ui-sref-active-eq="active" 
    ui-sref="path3"> 
    Label 3 
    </a> 
</ion-nav-buttons> 

+0

はOK、私はこれを試してみて、戻ってきてみよう – lakhassane

関連する問題