Q:

checkbox in flutter

CheckboxListTile(
    title: Text("title text"),
    value: checkedValue,
    onChanged: (newValue) { 
                 setState(() {
                   checkedValue = newValue; 
                 }); 
               },
    controlAffinity: ListTileControlAffinity.leading,  //  <-- leading Checkbox
  )
4
// Please format your code

  CheckboxListTile _ = CheckboxListTile(
    title: const Text("title text"),
    value: checkedValue,
    onChanged: (newValue) {
      setState(() {
        checkedValue = newValue;
      });
    },
    controlAffinity: ListTileControlAffinity.leading, //  <-- leading Checkbox
  );
0

New to Communities?

Join the community