ResponsiveColumn.full constructor

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

Creates a ResponsiveColumn with full width for each screen tier.

Implementation

factory ResponsiveColumn.full({
  double? height,
  Widget child = nil,
  Decoration? decoration,
  Decoration? foregroundDecoration,
  Alignment? alignment,
  EdgeInsets? padding,
  EdgeInsets? margin,
}) =>
    ResponsiveColumn.all(
      value: 12,
      height: height,
      child: child,
      decoration: decoration,
      foregroundDecoration: foregroundDecoration,
      alignment: alignment,
      padding: padding,
      margin: margin,
    );