본문 바로가기
Flutter

[Flutter] table 셀 너비 자동 맞춤

by hymndaniel 2022. 4. 23.
Table(
  defaultColumnWidth: IntrinsicColumnWidth(flex: 1),
  ...
);

 

https://stackoverflow.com/questions/59573641/how-to-set-table-column-size-in-tablerow-for-flutter-table

 

How to set table column size in TableRow for Flutter Table

I have no idea how to set table column size in Flutter. If I use Row, Expanded can be used, but TableRow does not allow it. Please tell me some advice how to set table column size. The best soluti...

stackoverflow.com

 

728x90