ExpandedScrollingRow constructor

const ExpandedScrollingRow({
  1. Key? key,
  2. required List<Widget> children,
  3. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  4. TextDirection? textDirection,
  5. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
  6. MainAxisSize mainAxisSize = MainAxisSize.max,
  7. VerticalDirection verticalDirection = VerticalDirection.down,
  8. TextBaseline? textBaseline,
  9. Widget scrollViewBuilder(
    1. Axis direction,
    2. Widget child
    )?,
})

Implementation

const ExpandedScrollingRow(
    {Key? key,
    required this.children,
    this.crossAxisAlignment = CrossAxisAlignment.center,
    this.textDirection,
    this.mainAxisAlignment = MainAxisAlignment.start,
    this.mainAxisSize = MainAxisSize.max,
    this.verticalDirection = VerticalDirection.down,
    this.textBaseline,
    this.scrollViewBuilder})
    : super(key: key);