我有多项选择题,必须选择多个答案,为此,我正在使用CheckBoxListTile,我能够在单个列表中添加所选值,但我想在其中添加所选值一个不同的列表作为问题1在不同列表中的选择值和问题2在不同列表中的选择值
答案 0 :(得分:2)
为此,我认为您需要为不同的问题创建列表。
例如:
//Create your lists to store the answers in for your questions
List<bool> question1Value = [];
List<bool> question2Value = [];
CheckBoxListTile(
title: Text("hello");
onChanged(bool value) {
// You can manipulate the data here in OnChanged
question1Value.add(value);
question2Value.add(value);
}
);
我希望这会有所帮助??