ResponsiveColumn.auto constructor
- double? xxs = 12,
- double? xs = 6,
- double? sm = 4,
- double? md = 3,
- double? lg = 3,
- double? xl = 2,
- double? xxl = 1,
- double? height,
- Widget child = nil,
- Decoration? decoration,
- Decoration? foregroundDecoration,
- Alignment? alignment,
- EdgeInsets? padding,
- EdgeInsets? margin,
Responsive Column thats have breakpoints for each ScreenTier. Each tier has a default value
Implementation
const ResponsiveColumn.auto({
this.xxs = 12,
this.xs = 6,
this.sm = 4,
this.md = 3,
this.lg = 3,
this.xl = 2,
this.xxl = 1,
this.height,
this.child = nil,
this.decoration,
this.foregroundDecoration,
this.alignment,
this.padding,
this.margin,
});