Table widget !
That widget allows you to build a table. Code : Table(children : <TableRow>[])
Example :
Table(
border: TableBorder.all(), // Allows to add a border decoration around your table
children: [
TableRow(children :[
Text('Year'),
Text('Lang'),
Text('Author'),
]),
TableRow(children :[
Text('2011',),
Text('Dart'),
Text('Lars Bak'),
]),
TableRow(children :[
Text('1996'),
Text('Java'),
Text('James Gosling'),
]),
]
),
Note: TableRow is a horizontal group of cells in a Table.
Add many TableRow that you want to
You can learn more about Table by watching this official video or by visiting flutter.dev