📅  最后修改于: 2022-03-11 14:48:03.733000             🧑  作者: Mango
// Please format your code
CheckboxListTile _ = CheckboxListTile(
title: const Text("title text"),
value: checkedValue,
onChanged: (newValue) {
setState(() {
checkedValue = newValue;
});
},
controlAffinity: ListTileControlAffinity.leading, // <-- leading Checkbox
);