flutter – how to properly handle list of TextEditingController for a five TextFormField generated by the loop used by listview.builder?
I’m having a future list to work with the listview.builder. I have another list List<QuizQuestion> listofquizquestionsforquiz=GlobalParams.quizmodel.quizQuestions; for listofquizquestionsforquiz I want every item in the list of TextEditingController to handle the corresponding TextFormField, meaning for controllers[0] I want it to be attached and work with the first TextFormField the Listview.builder generates, then the second textedintingcontroller to … Read more