NikuGridView.children constructor
NikuGridView.children({
- Key? key,
- Axis? scrollDirection,
- bool? reverse,
- ScrollController? controller,
- bool? primary,
- ScrollPhysics? physics,
- bool? shrinkWrap,
- NikuEdgeInsets? padding,
- required SliverGridDelegate gridDelegate,
- bool? addAutomaticKeepAlives,
- bool? addRepaintBoundaries,
- bool? addSemanticIndexes,
- double? cacheExtent,
- List<
Widget> ? children, - int? semanticChildCount,
- DragStartBehavior? dragStartBehavior,
- Clip? clipBehavior,
- ScrollViewKeyboardDismissBehavior? keyboardDismissBehavior,
- String? restorationId,
Implementation
factory NikuGridView.children({
Key? key,
Axis? scrollDirection,
bool? reverse,
ScrollController? controller,
bool? primary,
ScrollPhysics? physics,
bool? shrinkWrap,
NikuEdgeInsets? padding,
required SliverGridDelegate gridDelegate,
bool? addAutomaticKeepAlives,
bool? addRepaintBoundaries,
bool? addSemanticIndexes,
double? cacheExtent,
List<Widget>? children,
int? semanticChildCount,
DragStartBehavior? dragStartBehavior,
Clip? clipBehavior,
ScrollViewKeyboardDismissBehavior? keyboardDismissBehavior,
String? restorationId,
}) =>
NikuGridView(
key: key,
type: NikuGridViewType.children,
scrollDirection: scrollDirection,
reverse: reverse,
controller: controller,
primary: primary,
physics: physics,
shrinkWrap: shrinkWrap,
padding: padding,
gridDelegate: gridDelegate,
addRepaintBoundaries: addRepaintBoundaries,
addAutomaticKeepAlives: addAutomaticKeepAlives,
addSemanticIndexes: addSemanticIndexes,
cacheExtent: cacheExtent,
children: children,
semanticChildCount: semanticChildCount,
dragStartBehavior: dragStartBehavior,
clipBehavior: clipBehavior,
keyboardDismissBehavior: keyboardDismissBehavior,
restorationId: restorationId,
);