overflowWidgetAlignment property

MainAxisAlignment overflowWidgetAlignment

The alignment of the overflow widget between the end of the visible regular children and the end of the container.

Implementation

MainAxisAlignment get overflowWidgetAlignment => _overflowWidgetAlignment;
void overflowWidgetAlignment=(MainAxisAlignment value)

Implementation

set overflowWidgetAlignment(MainAxisAlignment value) {
  if (_overflowWidgetAlignment != value) {
    _overflowWidgetAlignment = value;
    markNeedsLayout();
  }
}