NikuListView.custom constructor
NikuListView.custom({
- Key? key,
- Axis? scrollDirection,
- bool? reverse,
- ScrollController? controller,
- bool? primary,
- ScrollPhysics? physics,
- bool? shrinkWrap,
- NikuEdgeInsets? padding,
- double? itemExtent,
- Widget? prototypeItem,
- required SliverChildDelegate childrenDelegate,
- double? cacheExtent,
- int? semanticChildCount,
- DragStartBehavior? dragStartBehavior,
- ScrollViewKeyboardDismissBehavior? keyboardDismissBehavior,
- String? restorationId,
- Clip? clipBehavior,
Implementation
factory NikuListView.custom({
Key? key,
Axis? scrollDirection,
bool? reverse,
ScrollController? controller,
bool? primary,
ScrollPhysics? physics,
bool? shrinkWrap,
NikuEdgeInsets? padding,
double? itemExtent,
Widget? prototypeItem,
required SliverChildDelegate childrenDelegate,
double? cacheExtent,
int? semanticChildCount,
DragStartBehavior? dragStartBehavior,
ScrollViewKeyboardDismissBehavior? keyboardDismissBehavior,
String? restorationId,
Clip? clipBehavior,
}) =>
NikuListView(
key: key,
type: NikuListViewType.custom,
scrollDirection: scrollDirection,
reverse: reverse,
controller: controller,
primary: primary,
physics: physics,
shrinkWrap: shrinkWrap,
padding: padding,
itemExtent: itemExtent,
prototypeItem: prototypeItem,
childrenDelegate: childrenDelegate,
cacheExtent: cacheExtent,
semanticChildCount: semanticChildCount,
dragStartBehavior: dragStartBehavior,
keyboardDismissBehavior: keyboardDismissBehavior,
restorationId: restorationId,
clipBehavior: clipBehavior,
);