We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8467db commit fa9367eCopy full SHA for fa9367e
lib/src/layout_element.dart
@@ -114,7 +114,8 @@ class TableLayoutElement extends LayoutElement {
114
if (child is TableCellElement) {
115
cells.add(GridPlacement(
116
child: Container(
117
- width: double.infinity,
+ width: child.style.width ?? double.infinity,
118
+ height: child.style.height ?? double.infinity,
119
padding: child.style.padding ?? row.style.padding,
120
decoration: BoxDecoration(
121
color: child.style.backgroundColor ?? row.style.backgroundColor,
0 commit comments