Home > Mobile >  flutter passing array data from one screen to another in flutter using route
flutter passing array data from one screen to another in flutter using route

Time:12-07

please i am trying to pass to array data from one screen to another via route. bellow is my code. Thank you all.

class BallGamesWidget extends StatefulWidget {
  @override
  BallGamesWidgetState createState() => new BallGamesWidgetState();
}

class BallGamesWidgetState extends State {
  Map<String, bool> List = {
    'Bubble Football ⚽': false,
    'Futsal            
  • Related