mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
25 lines
583 B
HTML
25 lines
583 B
HTML
---
|
|
name: simple
|
|
component: ionFooterBar
|
|
---
|
|
<div ng-controller="FooterBarSimpleCtrl">
|
|
<ion-footer-bar class="bar-assertive"
|
|
ng-class="{'bar-subfooter': data.isSubfooter}"
|
|
ng-show="data.isShown">
|
|
<h1 class="title">Footer</h1>
|
|
</ion-footer-bar>
|
|
<ion-content>
|
|
<ion-toggle ng-model="data.isSubfooter">
|
|
Make it a Subfooter?
|
|
</ion-toggle>
|
|
<ion-toggle ng-model="data.isShown">
|
|
Show it?
|
|
</ion-toggle>
|
|
<div class="list">
|
|
<div class="item" ng-repeat="item in items">
|
|
{{item}}
|
|
</div>
|
|
</div>
|
|
</ion-content>
|
|
</div>
|