mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 11:41:20 +08:00
36 lines
695 B
HTML
36 lines
695 B
HTML
|
|
<ion-toolbar><ion-title>Switches</ion-title></ion-toolbar>
|
|
|
|
|
|
<ion-content>
|
|
|
|
<form (^submit)="doSubmit($event)">
|
|
|
|
<ion-list>
|
|
|
|
<ion-switch aria-checked="true">
|
|
<label id="appleLabel">Apple</label>
|
|
<input checked="true" type="checkbox">
|
|
</ion-switch>
|
|
|
|
<ion-switch>
|
|
<label>Banana</label>
|
|
<input value="test" type="checkbox">
|
|
</ion-switch>
|
|
|
|
<ion-switch aria-checked="true">
|
|
<label>Cherry</label>
|
|
<input type="checkbox">
|
|
</ion-switch>
|
|
|
|
<ion-switch>
|
|
<label>Grape</label>
|
|
<input value="test" checked="checked" type="checkbox">
|
|
</ion-switch>
|
|
|
|
<ion-list>
|
|
|
|
</form>
|
|
|
|
</ion-content>
|