This is my list showing the error
CodePudding user response:
This is because you just added List scoreKeeper
which is equivalent to List<dynamic> scoreKeeper
.
So instead, do List<Widget> scoreKeeper = [...];
CodePudding user response:
Try providing data type on list like
List<Widget> scoreKeeper = [..