Table
A widget that uses the table layout algorithm for its children.
Example
Table( children: const <TableRow>[ TableRow( children: <Widget>[ Text('AAAAAA'), Text('B'), Text('C'), ], ), TableRow( children: <Widget>[ Text('D'), Text('EEE'), Text('F'), ], ), TableRow( children: <Widget>[ Text('G'), Text('H'), Text('III'), ], ), ], )