在这里,我提到了我的复选框代码。我是新手,所以为了记住我的功能,我必须实现它。
代码:
Container(
padding: EdgeInsets.all(10.0),
child: Column(
children: <Widget>[
new Checkbox(value: checkBoxValue,
activeColor: Colors.green,
onChanged:(bool newValue){
setState(() {
checkBoxValue = newValue;
});
Text('Remember me');
}),
],
),
);
最佳答案
如果您需要带有标签的Checkbox
,则可以使用CheckboxListTile
:
CheckboxListTile(
title: Text("title text"),
value: checkedValue,
onChanged: (newValue) {
setState(() {
checkedValue = newValue;
});
},
controlAffinity: ListTileControlAffinity.leading, // <-- leading Checkbox
)
关于flutter - 如何在Flutter中实现CheckBox?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52814039/