flutter的DataTable添加headingTextStyle丢失头部文字的问题
DataTable( headingTextStyle: const TextStyle( fontWeight: FontWeight.bold, fontSize: 20, color: Colors.black),
要加上color属性,可能时文字颜色和背景相同,也可能是丢失了
DataTable( headingTextStyle: const TextStyle( fontWeight: FontWeight.bold, fontSize: 20, color: Colors.black),
要加上color属性,可能时文字颜色和背景相同,也可能是丢失了