ResponsiveWrap constructor
const
ResponsiveWrap({
- Key? key,
- required List<
Widget> children, - double mobileSpacing = 8.0,
- double tabletSpacing = 12.0,
- double desktopSpacing = 16.0,
- double mobileRunSpacing = 8.0,
- double tabletRunSpacing = 12.0,
- double desktopRunSpacing = 16.0,
- WrapAlignment alignment = WrapAlignment.start,
- WrapCrossAlignment crossAxisAlignment = WrapCrossAlignment.start,
- Axis direction = Axis.horizontal,
Implementation
const ResponsiveWrap({
super.key,
required this.children,
this.mobileSpacing = 8.0,
this.tabletSpacing = 12.0,
this.desktopSpacing = 16.0,
this.mobileRunSpacing = 8.0,
this.tabletRunSpacing = 12.0,
this.desktopRunSpacing = 16.0,
this.alignment = WrapAlignment.start,
this.crossAxisAlignment = WrapCrossAlignment.start,
this.direction = Axis.horizontal,
});