Checkbox
A checkbox is no different than the HTML checkbox input, except it's styled differently. This is an example of multiple checkboxes within a list. Note the item-checkbox
class was added along side item
for each item.
Ionic prefers to use the <label>
element for a checkbox item in order to make the entire checkbox tappable.
Checkboxes can also have colors assigned to them, such as checkbox-assertive
to assign the assertive color.
<ulclass="list"><liclass="item item-checkbox"><labelclass="checkbox"><inputtype="checkbox"></label>
Flux Capacitor
</li> ...
</ul>