when i try build example i get multiple errors;
lib/pages/animated_map_controller.dart:93:13: Error: No named parameter with the name 'colors'. colors: Colors.green,
the code is in multiple files with FlutterLogo witget, to fix them:
replace only colors parameter with textColor in every FlutterLogo widget, such like this:
FlutterLogo( key: Key('green'), textColor: Colors.green, ),
when i try build example i get multiple errors;
lib/pages/animated_map_controller.dart:93:13: Error: No named parameter with the name 'colors'. colors: Colors.green,the code is in multiple files with FlutterLogo witget, to fix them:
replace only colors parameter with textColor in every FlutterLogo widget, such like this:
FlutterLogo( key: Key('green'), textColor: Colors.green, ),