DataColumn Dynamic in Flutter

Issue Hi This Is My Table And Data Row is Daynamic How Can Change Data Column Dynamicly like row? DataTable2( columnSpacing: 12, horizontalMargin: 12, minWidth: 600, columns: [ DataColumn(label: Text("1")), DataColumn(label: Text("2")), DataColumn(label: Text("3")), DataColumn(label: Text("4")), DataColumn(label: Text("5")) ],rows: listItem!.map<DataRow>((e)

Continue reading

Scrolling not working with SingleChildScrollView

Issue I want to do scrolling using flutter driver on a page that uses SingleChildScrollView.. the layout looks like this return Scaffold( backgroundColor: PinColorsV2.neutralMin, body: NotificationListener<OverscrollIndicatorNotification>( onNotification: (overscroll) { overscroll.disallowGlow(); return true; }, child: LayoutBuilder( builder: (context, constraints) { return

Continue reading