ResponsiveGridView.custom constructor

ResponsiveGridView.custom({
  1. Key? key,
  2. BreakpointsData<Axis>? scrollDirection,
  3. BreakpointsData<bool>? reverse,
  4. ScrollController? controller,
  5. bool? primary,
  6. BreakpointsData<ScrollPhysics>? physics,
  7. BreakpointsData<bool>? shrinkWrap,
  8. BreakpointsData<EdgeInsets>? padding,
  9. required SliverGridDelegate gridDelegate,
  10. required SliverChildDelegate childrenDelegate,
  11. double? cacheExtent,
  12. int? semanticChildCount,
  13. BreakpointsData<DragStartBehavior>? dragStartBehavior,
  14. BreakpointsData<ScrollViewKeyboardDismissBehavior>? keyboardDismissBehavior,
  15. String? restorationId,
  16. BreakpointsData<Clip>? clipBehavior,
})

Implementation

ResponsiveGridView.custom({
  super.key,
  this.scrollDirection,
  this.reverse,
  this.controller,
  this.primary,
  this.physics,
  this.shrinkWrap,
  this.padding,
  required this.gridDelegate,
  required this.childrenDelegate,
  this.cacheExtent,
  this.semanticChildCount,
  this.dragStartBehavior,
  this.keyboardDismissBehavior,
  this.restorationId,
  this.clipBehavior,
});