i am working with some code but FLutter table is not displaying data in correct way, its somehow overlapping the data.
Table(
defaultColumnWidth: FlexColumnWidth(1.0),
defaultVerticalAlignment: TableCellVerticalAlignment.middle,
border: TableBorder.all(), // Allows to add a border decoration around your table
children: const [
TableRow(children :[
Text('Year'),
Text('Lang'),
Text('Author'),
]),
TableRow(children :[
Text('1990'),
Text('Eng'),
Text('ASD'),
]),
]
),
Follow this :