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.
2 parents 89efb7c + d25f3ae commit 0724094Copy full SHA for 0724094
lib/src/layout_element.dart
@@ -40,7 +40,7 @@ class TableLayoutElement extends LayoutElement {
40
return FractionColumnWidth(width);
41
} else {
42
final width = double.tryParse(widthStr);
43
- return FixedColumnWidth(width);
+ return width != null ? FixedColumnWidth(width) : null;
44
}
45
});
46
})
0 commit comments