ResponsiveFlex constructor

const ResponsiveFlex({
  1. Key? key,
  2. required BreakpointsData<Axis> direction,
  3. BreakpointsData<MainAxisAlignment>? mainAxisAlignment,
  4. BreakpointsData<MainAxisSize>? mainAxisSize,
  5. BreakpointsData<CrossAxisAlignment>? crossAxisAlignment,
  6. BreakpointsData<TextDirection>? textDirection,
  7. BreakpointsData<VerticalDirection>? verticalDirection,
  8. BreakpointsData<TextBaseline>? textBaseLine,
  9. BreakpointsData<Clip>? clipBehavior,
  10. required List<Widget> children,
})

Implementation

const ResponsiveFlex({
  super.key,
  required this.direction,
  this.mainAxisAlignment,
  this.mainAxisSize,
  this.crossAxisAlignment,
  this.textDirection,
  this.verticalDirection,
  this.textBaseLine,
  this.clipBehavior,
  required this.children,
});