copay/public/views/tabs.html

32 lines
1.2 KiB
HTML
Raw Normal View History

2016-08-11 13:38:27 -07:00
<!--
Create tabs with an icon and label, using the tabs-positive style.
Each tab's child <ion-nav-view> directive will have its own
navigation history that also transitions its views in and out.
-->
<ion-tabs class="tabs-icon-top tabs-color-active-positive" ng-class="{'tabs-item-hide': hideTabs}">
2016-08-11 13:38:27 -07:00
<ion-tab title="Home" icon-off="ico-home" icon-on="ico-home-selected" ui-sref="tabs.home">
2016-08-11 13:38:27 -07:00
<ion-nav-view name="tab-home"></ion-nav-view>
</ion-tab>
<ion-tab title="Receive" icon-off="ico-receive" icon-on="ico-receive-selected" ui-sref="tabs.receive">
2016-08-11 13:38:27 -07:00
<ion-nav-view name="tab-receive"></ion-nav-view>
</ion-tab>
2016-08-25 07:18:10 -07:00
<!-- this actually NEVER gets rendered -->
<qr-scanner class="qr-icon size-24" style="display:none" set-fn="setScanFn(theScanFn)" on-scan="onScan(data)"></qr-scanner>
2016-08-11 13:38:27 -07:00
2016-09-14 12:08:19 -07:00
<ion-tab title="Scan" icon-off="ico-scan" ng-click="scan()" >
2016-08-25 07:18:10 -07:00
</ion-tab>
2016-08-11 13:38:27 -07:00
<ion-tab title="Send" icon-off="ico-send" icon-on="ico-send-selected" ui-sref="tabs.send">
2016-08-11 13:38:27 -07:00
<ion-nav-view name="tab-send"></ion-nav-view>
</ion-tab>
<ion-tab title="Settings" icon-off="ico-settings" icon-on="ico-settings-selected" ui-sref="tabs.settings">
2016-08-11 13:38:27 -07:00
<ion-nav-view name="tab-settings"></ion-nav-view>
</ion-tab>
2016-08-17 11:23:17 -07:00
</ion-tabs>