gapWidth property

double gapWidth
inherited

How large should the gaps between items in a grid or flex container be?

Implementation

double get gapWidth => _gapWidth;
void gapWidth=(double value)
inherited

Change the _gapWidth field value. gapWidthChanged will be invoked only if the field's value has changed.

Implementation

set gapWidth(double value) {
  if (_gapWidth == value) {
    return;
  }
  double from = _gapWidth;
  _gapWidth = value;
  if (hasValidated) {
    gapWidthChanged(from, value);
  }
}