Flutter: Is there any way to change the row line color of DataTable?
问题 I'm using DataTable in my recent app and i need to change the color of the row line or make it invisible (i mean I don't want to my table shows any row line) If anyone knows please help! thanks 回答1: Use Theme widget and overriding the dividerColor as shown below. import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( home: MyHomePage(), ); } } class MyHomePage extends