SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: SingleChildScrollView(
scrollDirection: Axis.vertical,
child: DataTable(
decoration: BoxDecoration(color: Color(0xffCFFFF4)),
columns: [
DataColumn(label: Text('KOTA/KABUPATEN', style: TextStyle(fontSize: 11),)),
DataColumn(label: Text('01 Jan',style: TextStyle(fontSize: 11))),
DataColumn(label: Text('02 Jan',style: TextStyle(fontSize: 11))),
DataColumn(label: Text('03 Jan',style: TextStyle(fontSize: 11))),
DataColumn(label: Text('04 Jan',style: TextStyle(fontSize: 11))),
DataColumn(label: Text('05 Jan',style: TextStyle(fontSize: 11))),
DataColumn(label: Text('06 Jan',style: TextStyle(fontSize: 11))),
DataColumn(label: Text('07 Jan',style: TextStyle(fontSize: 11))),
// Add more columns if needed
],
rows: [
DataRow(cells: [
DataCell(Text('Data 1',style: TextStyle(fontSize: 10))),
DataCell(Text('Data 2',style: TextStyle(fontSize: 10))),
DataCell(Text('Data 3',style: TextStyle(fontSize: 10))),
DataCell(Text('Data 4',style: TextStyle(fontSize: 10))),
DataCell(Text('Data 5',style: TextStyle(fontSize: 10))),
DataCell(Text('Data 6',style: TextStyle(fontSize: 10))),
DataCell(Text('Data 7',style: TextStyle(fontSize: 10))),
DataCell(Text('Data 8',style: TextStyle(fontSize: 10))),
// Add more cells if needed
]),
DataRow(cells: [
DataCell(Text('Data 1',style: TextStyle(fontSize: 10))),
DataCell(Text('Data 2',style: TextStyle(fontSize: 10))),
DataCell(Text('Data 3',style: TextStyle(fontSize: 10))),
DataCell(Text('Data 4',style: TextStyle(fontSize: 10))),
DataCell(Text('Data 5',style: TextStyle(fontSize: 10))),
DataCell(Text('Data 6',style: TextStyle(fontSize: 10))),
DataCell(Text('Data 7',style: TextStyle(fontSize: 10))),
DataCell(Text('Data 8',style: TextStyle(fontSize: 10))),
// Add more cells if needed
]),
],
),