Flutter Table Row Height

[Solved] Flutter Table Row Height | Swift - Code Explorer | yomemimo.com
Question : flutter table row height

Answered by : davide-bert

//TableRow class in Flutter doesn't has height attribute. But the height of the TableRow is the maximum of the intrinsic height of all its children's.
//For example, you can has sizedBox classess for all TableCell classes inside the Table Row:
TableRow( children: [ TableCell( child: SizedBox(height: 5,), ), TableCell( child: SizedBox(height: 5,),	),
]),

Source : https://www.softwareblogs.com/Posts/Details/39/changed-height-of-tablerow-in-flutter-mobile-app | Last Update : Mon, 11 Oct 21

Answers related to flutter table row height

Code Explorer Popular Question For Swift