ionic-cordova-gulp-seed
Version:
Ionic & Cordova & Gulp seed with organized code, tests, bower support and some other stuff. Originated from ionic-angular-cordova-seed.
18 lines (17 loc) • 579 B
HTML
---
name: chooseOne
component: ionRadio
---
<ion-header-bar class="bar-positive">
<h1 class="title">Radios</h1>
</ion-header-bar>
<ion-content ng-controller="ChooseOneCtrl">
<h1>
Your Choice: <span class="assertive">{{choice}}</span>
</h1>
<ion-radio ng-model="choice" value="one">One</ion-radio>
<ion-radio ng-model="choice" value="two">Two</ion-radio>
<ion-radio ng-model="choice" ng-value="'three'">Three</ion-radio>
<ion-radio ng-model="choice" ng-value="'four'">Four</ion-radio>
<ion-radio ng-model="choice" value="five">Five</ion-radio>
</ion-content>