skip to Main Content

Flutter Implementation of Isolates/compute inside stack of widgets – 'List<Future<Widget>>' can't be assigned to the parameter type 'List<Widget>'

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…

VIEW QUESTION
Back To Top
Search