我有一个黑色背景的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')),
])
]),
字符串
1条答案
按热度按时间mgdq6dx11#
您可以使用Theme小部件,覆盖dividerColor就可以实现这一点。
下面是示例代码:
字符串
这是实际的输出:
的数据