fullWidth property

void fullWidth

Implementation

void get fullWidth {
  final l = _latest;

  if (l is SizedBox)
    return _replace(
      (w) => SizedBox(
        width: double.infinity,
        height: l.height,
        child: w,
      ),
    );

  _add((w) => SizedBox(width: double.infinity, child: w));
}