The argument type ‘List<Future>’ can’t be assigned to the parameter type ‘List’
return SizedBox( width: screenSize.width, height: screenSize.height, child: Stack( alignment: Alignment.topLeft, children: listOfWidgets) );
listOfWidgets for example 10 widgets, each widget having one isolate and one compute which are running following function
String Calculate(int num){ int sum=num+num; return sum.toString(); }
2
Answers
you can try
Future.wait
try this: