skip to Main Content

When Scrolling listview selected radio button are deselect in Flutter

I am trying to make a quiz application. this is QuestionDetailsPage where i show all the MCQ question with 4 option from the database by MCQQuestionWidget import 'package:flutter/material.dart'; import 'package:practice/models/CustomExam.dart'; import 'package:practice/models/exam.dart'; import 'package:practice/models/mcqquestion.dart'; import 'package:practice/pages/QuestionList.dart'; import 'package:practice/pages/questionDetailsPage.dart'; import 'package:practice/services/database_helper.dart';…

VIEW QUESTION

Flutter – How do I display a scrollable list where it's grouped by two fields?

I have this data: [{ID: 0, Line: 100, Part: 00-87000088, Lots: 00865756,00866790,00868501,00871385,00871905,00872712,00875997,00878042}, {ID: 1, Line: 990000, Part: 00-87000001, Lots: 00746727,00748270,00750627,00750632,00753983,00754156,00757423,00758997,00762736,00792476}] I need to display this in a scrollable widget like this: Line Part Lots 100 00-87000088 00865756 00866790 00868501 00871385…

VIEW QUESTION
Back To Top
Search