flutter_tex
flutter_tex copied to clipboard
The selected item style in TeXViewGroup will not be reset (Quiz Example)
Hi @shah-xad
Could you please help on below issue,
Issue : If the answers of the adjacent questions are the same, the selected item style in TeXViewGroup will not be reset. Please see the following GIF
Next Button OnClick :
setState(() {
selectedOptionId = null;
});
if (_currentIndex < (question.length - 1)) {
setState(() {
_currentIndex++;
});
}
TeXViewGroup OnTap :
onTap: (id) {
this.selectedOptionId = id;
setState(() {
isWrong = false;
});
}