ResponsiveColumn constructor

const ResponsiveColumn({
  1. double? xxs = 12,
  2. double? xs,
  3. double? sm,
  4. double? md,
  5. double? lg,
  6. double? xl,
  7. double? xxl,
  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. 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,
});