ResponsiveView constructor
const
ResponsiveView({
- Key? key,
- Responsive screenBreakpoint = Responsive.xs,
- required List<
Widget> children, - MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
- MainAxisSize mainAxisSize = MainAxisSize.max,
- CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
- VerticalDirection verticalDirection = VerticalDirection.down,
- TextDirection? textDirection,
- TextBaseline? textBaseline,
Implementation
const ResponsiveView({
super.key,
this.screenBreakpoint = Responsive.xs,
required this.children,
this.mainAxisAlignment = MainAxisAlignment.start,
this.mainAxisSize = MainAxisSize.max,
this.crossAxisAlignment = CrossAxisAlignment.center,
this.verticalDirection = VerticalDirection.down,
this.textDirection,
this.textBaseline,
});