skip to Main Content

"Range error (index) : invalid value" using Flutter

I have two lists: the first list is called PlanExerciseslist. Its data are retrieved from Firestore and the second list is list of checkboxes... Here is the code to understand: late List<bool> isChecked; isChecked = List<bool>.filled(LifeStyleCubit.get(context).PlanExerciseslist.length, false); The problem is…

VIEW QUESTION

Flutter Unable to create corner curved color padding

Orange color corner curve padding not archive but here I get straight line only suggest any check my code..! Widget build(Context context) { return Padding( padding: EdgeInsets.symmetric(vertical: 6.0, horizontal: 6.0), child: Card( elevation: 6.0, color: Colors.white, clipBehavior: Clip.hardEdge, shape: RoundedRectangleBorder(…

VIEW QUESTION
Back To Top
Search