ResponsiveColumn constructor
- double? xxs = 12,
- double? xs,
- double? sm,
- double? md,
- double? lg,
- double? xl,
- double? xxl,
- double? height,
- Widget child = nil,
- Decoration? decoration,
- Decoration? foregroundDecoration,
- Alignment? alignment,
- EdgeInsets? padding,
- EdgeInsets? margin,
Responsive Column thats have breakpoints for each ScreenTier. If a tier is not specified, its fall down to the next smaller screen tier
Implementation
const ResponsiveColumn({
this.xxs = 12,
this.xs,
this.sm,
this.md,
this.lg,
this.xl,
this.xxl,
this.height,
this.child = nil,
this.decoration,
this.foregroundDecoration,
this.alignment,
this.padding,
this.margin,
});