LeftScroll constructor
LeftScroll({
- Key? key,
- required Widget child,
- required List<
Widget> buttons, - LeftScrollCloseTag? closeTag,
- VoidCallback? onSlideStarted,
- VoidCallback? onSlideCompleted,
- VoidCallback? onSlideCanceled,
- VoidCallback? onTap,
- double buttonWidth = 80.0,
- dynamic onScroll()?,
- bool closeOnPop = true,
Implementation
LeftScroll({
this.key,
required this.child,
required this.buttons,
this.closeTag,
this.onSlideStarted,
this.onSlideCompleted,
this.onSlideCanceled,
this.onTap,
this.buttonWidth: 80.0,
this.onScroll,
this.closeOnPop: true,
}) : super(key: key);