expandHorizontally property
Implementation
@override
bool get expandHorizontally
{
if (!super.expandHorizontally) return false;
bool flexible = false;
for (var child in viewableChildren)
{
if (child.visible && child.expandHorizontally)
{
flexible = true;
break;
}
}
return flexible;
}