BoxyRow constructor

const BoxyRow({
  1. Key? key,
  2. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
  3. MainAxisSize mainAxisSize = MainAxisSize.max,
  4. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.stretch,
  5. TextDirection? textDirection,
  6. VerticalDirection verticalDirection = VerticalDirection.down,
  7. TextBaseline? textBaseline,
  8. List<Widget> children = const <Widget>[],
  9. BoxyFlexIntrinsicsBehavior? intrinsicsBehavior,
})

Creates a horizontal array of children.

The direction, mainAxisAlignment, mainAxisSize, crossAxisAlignment, and verticalDirection arguments must not be null. If crossAxisAlignment is CrossAxisAlignment.baseline, then textBaseline must not be null.

The textDirection argument defaults to the ambient Directionality, if any. If there is no ambient directionality, and a text direction is going to be necessary to determine the layout order (which is always the case unless the row has no children or only one child) or to disambiguate start or end values for the mainAxisAlignment, the textDirection must not be null.

Implementation

const BoxyRow({
  super.key,
  super.mainAxisAlignment,
  super.mainAxisSize,
  super.crossAxisAlignment,
  super.textDirection,
  super.verticalDirection,
  super.textBaseline,
  super.children,
  super.intrinsicsBehavior,
}) : super(
        direction: Axis.horizontal,
      );