flowChildren property
Vertical columns flow as separate MultiPage children so a nested Table can span.
Implementation
@override
List<Widget>? get flowChildren {
if (direction != Axis.vertical) {
return null;
}
for (final Widget child in children) {
if (child is Flexible) {
return null;
}
}
return children;
}