ResponsiveColumn.full constructor
- double? height,
- Widget child = nil,
- Decoration? decoration,
- Decoration? foregroundDecoration,
- Alignment? alignment,
- EdgeInsets? padding,
- 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,
);