ResponsiveColumn.all constructor

ResponsiveColumn.all({
  1. required double value,
  2. double? height,
  3. Widget child = nil,
  4. Decoration? decoration,
  5. Decoration? foregroundDecoration,
  6. Alignment? alignment,
  7. EdgeInsets? padding,
  8. EdgeInsets? margin,
})

Responsive Column thats have breakpoints for each ScreenTier. Each tier has a default value

Implementation

factory ResponsiveColumn.all({
  required double value,
  double? height,
  Widget child = nil,
  Decoration? decoration,
  Decoration? foregroundDecoration,
  Alignment? alignment,
  EdgeInsets? padding,
  EdgeInsets? margin,
}) =>
    ResponsiveColumn(
      xxs: value,
      xs: value,
      sm: value,
      md: value,
      lg: value,
      xl: value,
      xxl: value,
      height: height,
      child: child,
      decoration: decoration,
      foregroundDecoration: foregroundDecoration,
      alignment: alignment,
      padding: padding,
      margin: margin,
    );