EzRow constructor
EzRow({
- Key? key,
- MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
- MainAxisSize mainAxisSize = MainAxisSize.max,
- CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
- TextDirection? textDirection,
- VerticalDirection verticalDirection = VerticalDirection.down,
- TextBaseline? textBaseline,
- required List<
Widget> children, - bool reverseHands = true,
Row wrapper that automatically supports EzConfig.dominantSide
Can be disabled via setting reverseHands
to false
Implementation
EzRow({
this.key,
this.mainAxisAlignment = MainAxisAlignment.start,
this.mainAxisSize = MainAxisSize.max,
this.crossAxisAlignment = CrossAxisAlignment.center,
this.textDirection,
this.verticalDirection = VerticalDirection.down,
this.textBaseline,
required this.children,
this.reverseHands = true,
}) : super(key: key);