【发布时间】:2019-11-17 22:01:39
【问题描述】:
我希望一次只选择一个单选按钮(从该组中)。但是我的所有单选按钮都可以选择。我应该怎么做才能解决这个问题?
这是我的主要代码
body: Column(
children: <Widget>[
Expanded(
child: ListView.builder(
itemCount: quizData.length,
padding: EdgeInsets.all(8.0),
itemBuilder: (context, index) {
Results results = quizData[index];
List<String> allAnswer = results.incorrectAnswer;
allAnswer.add(results.correctAnswer);
return ListTile(
title: Text("${index + 1}. " + results.question,
style: TextStyle(
fontSize: 15.0,
)),
subtitle: Container(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.start,
children: allAnswer.map((choice) {
return AnswerChoice(
allAnswer,
allAnswer.indexOf(choice),
choice,
allAnswer.indexOf(choice));
}).toList(),
),
));
}),
),
],
));
这是创建单选按钮的代码
class AnswerChoice extends StatefulWidget {
final List<String> results;
final int index;
final String choice;
final int abjadIndex;
AnswerChoice(this.results, this.index, this.choice, this.abjadIndex);
@override
_AnswerChoiceState createState() => _AnswerChoiceState(this.choice, this.abjadIndex);
}
class _AnswerChoiceState extends State<AnswerChoice> {
int selectedRadio = -1;
final int abjadIndex;
List abjadList = ['a', 'b', 'c', 'd'];
Color colorPressed() {
return Colors.green;
}
final String choice;
_AnswerChoiceState(this.choice, this.abjadIndex);
@override
Widget build(BuildContext context) {
return RadioListTile(
value: widget.index,
groupValue: selectedRadio,
onChanged: (val) {
setState(() {
selectedRadio = val;
print("jawaban: " + choice);
print(widget.index);
print(selectedRadio);
});
},
title: Text(
"${abjadList[abjadIndex]}. " + choice,
style: TextStyle(fontSize: 14.0),
),
);
}
}
我在Trouble with flutter radio button这个问题上尝试过类似的问题,但没有任何改变
【问题讨论】: