ResponsiveView constructor

const ResponsiveView({
  1. Key? key,
  2. Responsive screenBreakpoint = Responsive.xs,
  3. required List<Widget> children,
  4. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
  5. MainAxisSize mainAxisSize = MainAxisSize.max,
  6. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  7. VerticalDirection verticalDirection = VerticalDirection.down,
  8. TextDirection? textDirection,
  9. 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,
});