Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

ionic checkbox


May 21, 2021 ionic


Table of contents


ionic checkbox (check box)

The Checkbox inside the ionic doesn't really look much different from the normal Checkbox effect, but it's different in style.

The following example demonstrates a list of multiple check boxes.

Note that each option of the item class needs to be added after the item-checkbox class.

Check boxes 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>

Try it out . . .

Here's how it works:

ionic checkbox