I have a Table
in Flutter and I want to have it expand it's row so that the table takes up the full space that's available for it. Given that TableRow
isn't a widget I can't use Expanded
on it the way I would for Widgets in a Column
. Is there another way to get similar behavior for a Table
?
Asked
Active
Viewed 1,301 times
4

Christian
- 25,249
- 40
- 134
- 225
1 Answers
-1
According to my information, you need to use the Row and Columns widgets instead of the Table widget and in addition to using the Expanded widget, or you will need to set a specific height for each row separately and it cannot be Flexible, Using Container in TableRow children

farouk osama
- 2,374
- 2
- 12
- 30