ionic tutorial - Form inputs in Ionicframework - ionic framework - ionic 2 - ionic creator - ionic development



Ionic inputs are no different from normal HTML inputs but they are styled differently and used as a directive. You can also use normal HTML inputs in Ionic apps. Here are some basic examples that Ionic offers ready-to-go.

Checkbox:

<ion-checkbox ng-model="checkbox">Label</ion-checkbox>
Click below button to copy the code. From wikitechy - ionic tutorial - ionic framework tutorial - team

Radio button:

<ion-radio ng-model="radio" ng-value="'radiovalue'">Value</ion-radio>
Click below button to copy the code. From wikitechy - ionic tutorial - ionic framework tutorial - team

Toggle:

<ion-toggle ng-model="toggle" toggle-class="toggle-calm">Toggle</ion-toggle>
Click below button to copy the code. From wikitechy - ionic tutorial - ionic framework tutorial - team

Related Searches to Form inputs in Ionicframework