У меня есть приложение Flutter на черном фоне, и при добавлении виджета Datatable границы и текст не видны. Я добавил цвет TextStyle для всех меток, но как мне сделать это для границы?
DataTable(columns: [
DataColumn(label: Center(child: Text('DATE', style: TextStyle(color: Colors.grey)))),
DataColumn(label: Center(child: Text('FANS', style: TextStyle(color: Colors.grey)))),
DataColumn(
label: Text('LIKES', style: TextStyle(color: Colors.grey))),
DataColumn(
label:
Text('EST. EARNINGS', style: TextStyle(color: Colors.grey))),
],
rows: [
DataRow(cells: [
DataCell(Text('1')),
DataCell(Text('2')),
DataCell(Text('3')),
DataCell(Text('4')),
])
]),