Row constructor
const
Row({
- Key? key,
- required List<
Component> children, - JustifyContent? mainAxisAlignment,
- AlignItems? crossAxisAlignment,
Implementation
const Row({
super.key,
required this.children,
this.mainAxisAlignment,
this.crossAxisAlignment,
});