Checkbox constructor

const Checkbox({Key key, @required bool value, bool tristate: false, @required ValueChanged<bool> onChanged, Color activeColor, MaterialTapTargetSize materialTapTargetSize })

Creates a material design checkbox.

The checkbox itself does not maintain any state. Instead, when the state of the checkbox changes, the widget calls the onChanged callback. Most widgets that use a checkbox will listen for the onChanged callback and rebuild the checkbox with a new value to update the visual appearance of the checkbox.

The following arguments are required:

  • value, which determines whether the checkbox is checked. The value can only be null if tristate is true.
  • onChanged, which is called when the value of the checkbox should change. It can be set to null to disable the checkbox.

The value of tristate must not be null.

Implementation

const Checkbox({
  Key key,
  @required this.value,
  this.tristate = false,
  @required this.onChanged,
  this.activeColor,
  this.materialTapTargetSize,
}) : assert(tristate != null),
     assert(tristate || value != null),
     super(key: key);