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