mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
27 lines
366 B
HTML
27 lines
366 B
HTML
|
|
<ion-view nav-title="Switches">
|
|
|
|
<ion-content>
|
|
|
|
<div class="list-header">Some Switches</div>
|
|
|
|
<ion-list>
|
|
|
|
<ion-switch [checked]="true">
|
|
Apples
|
|
</ion-switch>
|
|
|
|
<ion-switch>
|
|
Bananas
|
|
</ion-switch>
|
|
|
|
<ion-switch [disabled]="true">
|
|
Oranges
|
|
</ion-switch>
|
|
|
|
</ion-list>
|
|
|
|
</ion-content>
|
|
|
|
</ion-view>
|