ResponsiveColumn.auto constructor

const ResponsiveColumn.auto({
  1. double? xxs = 12,
  2. double? xs = 6,
  3. double? sm = 4,
  4. double? md = 3,
  5. double? lg = 3,
  6. double? xl = 2,
  7. double? xxl = 1,
  8. double? height,
  9. Widget child = nil,
  10. Decoration? decoration,
  11. Decoration? foregroundDecoration,
  12. Alignment? alignment,
  13. EdgeInsets? padding,
  14. 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,
});