RowSimple constructor
const
RowSimple({
- required List<
Widget> children, - String bootstrapClass = "",
- CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
- MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
- MainAxisSize mainAxisSize = MainAxisSize.max,
- TextBaseline? textBaseline,
- TextDirection? textDirection,
- VerticalDirection verticalDirection = VerticalDirection.down,
- Key? key,
Implementation
const RowSimple({
required this.children,
this.bootstrapClass="",
this.crossAxisAlignment=CrossAxisAlignment.center,
this.mainAxisAlignment=MainAxisAlignment.start,
this.mainAxisSize=MainAxisSize.max,
this.textBaseline,
this.textDirection,
this.verticalDirection=VerticalDirection.down,
Key? key}) : super(
key: key
);