NextRow constructor
const
NextRow({
- Key? key,
- EdgeInsets padding = const EdgeInsets.all(0),
- VerticalDirection verticalDirection = VerticalDirection.down,
- WrapAlignment verticalAlignment = WrapAlignment.start,
- required List<
NextCol> children, - WrapAlignment horizontalAlignment = WrapAlignment.start,
- double horizontalSpacing = 20.0,
- double verticalSpacing = 20.0,
Implementation
const NextRow({
Key? key,
this.padding = const EdgeInsets.all(0),
this.verticalDirection = VerticalDirection.down,
this.verticalAlignment = WrapAlignment.start,
required this.children,
this.horizontalAlignment = WrapAlignment.start,
this.horizontalSpacing = 20.0,
this.verticalSpacing = 20.0,
}) : super(key: key);