Skip to content
On this page

Checkbox List Tile

Checkbox List Tile demo

A representation of Checkbox.

NikuCheckboxListTile accepts all the props as same as CheckboxListTile.

// Using namespace
n.CheckboxListTile(true);

// Using Niku Prefix
NikuCheckboxListTile(true);

Example Usage

n.CheckboxListTile(true)
    ..title = "Title".n
    ..subtitle = "This is a subtitle".n
    ..activeColor = Colors.red
    ..onChanged = handleChange;

Defination

View Defination on pub.dev