bool _value = true; Checkbox( value: _value, onChanged: (bool newValue) { setState(() { _value = newValue; }); }, )