scrollable method
Niku
scrollable({
- ScrollController? controller,
- Axis scrollDirection = Axis.vertical,
- bool? primary,
- bool reverse = false,
- ScrollPhysics? scrollPhysics,
- DragStartBehavior dragStartBehavior = DragStartBehavior.start,
- String? restorationId,
Add singleChildScrolLView to widget
Equivalent to
singleChildScrollView(
)
Implementation
Niku scrollable({
ScrollController? controller,
Axis scrollDirection = Axis.vertical,
bool? primary,
bool reverse = false,
ScrollPhysics? scrollPhysics,
DragStartBehavior dragStartBehavior = DragStartBehavior.start,
String? restorationId,
}) {
_widget = SingleChildScrollView(
child: _widget,
controller: controller,
scrollDirection: scrollDirection,
primary: primary,
reverse: reverse,
physics: scrollPhysics,
dragStartBehavior: dragStartBehavior,
restorationId: restorationId,
);
return this;
}