我是一个flutter初学者。如何实现flutter中的2个复选框列表?
Padding(
padding: const EdgeInsets.only(top: 20),
child: CheckboxlListTitle(
title: const Text('Title1'),
value: _isChecked,
onChanged: (bool? newValue) {
setState(() {
_isChecked = newValue;
});
},
activeColor: Colors.green,
controlAffinity: ListTileControlAffinity.leading,
tristate: false,
),
),
1条答案
按热度按时间zujrkrfu1#
你需要创建两个bool变量来控制两个checkBox。