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