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 f1c5267 commit d25f3aeCopy full SHA for d25f3ae
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