Ionic Checkbox
The Checkbox in Ionic is essentially similar to a regular Checkbox in terms of functionality, but it has a different style.
The following example demonstrates a list of multiple checkboxes.
Note that each option needs to have the item-checkbox
class added after the item
class.
The checkbox can be styled with a specific color using checkbox-assertive
.
<ul class="list">
<li class="item item-checkbox">
<label class="checkbox">
<input type="checkbox">
</label>
Flux Capacitor
</li>
...
</ul>
Here is the runtime effect: