ionic checkbox
The checkbox in ionic is actually not much different from the ordinary checkbox in effect, but the style is different.
The following example colors a list of multiple checkboxes.
Note that the item-checkbox class needs to be added after the item class of each option.
Checkboxes can use checkbox-assertive to specify colors.
<ul class="list"> <li class="item item-checkbox"> <label class="checkbox"> <input type="checkbox"> </label> Flux Capacitor </li> ... </ul>
The running effect is as follows: