skip to Main Content

Flutter – Checkbox Checks All The Tasks Instead of The Relevant One Only

taskContainer(String taskName, String taskPriority, String taskDetails) { return Padding( padding: const EdgeInsets.only(bottom: 10), child: Container( height: 80, decoration: BoxDecoration( color: Colours().containerColour, borderRadius: BorderRadius.circular(10), boxShadow: [ BoxShadow( color: Colours().buttonShadow, blurRadius: 5, offset: const Offset(0, 5), ), ], ), child: Row( mainAxisAlignment:…

VIEW QUESTION
Back To Top
Search