CupertinoLeftScroll constructor
CupertinoLeftScroll({
- Key? key,
- required Widget child,
- required List<
Widget> buttons, - LeftScrollCloseTag? closeTag,
- VoidCallback? onTap,
- double buttonWidth = 80.0,
- bool? closeOnPop,
- bool? opacityChange,
- bool bounce = false,
- BounceStyle? bounceStyle,
Implementation
CupertinoLeftScroll({
this.key,
required this.child,
required this.buttons,
this.closeTag,
this.onTap,
this.buttonWidth = 80.0,
bool? closeOnPop,
this.opacityChange,
this.bounce = false,
this.bounceStyle,
}) : this.closeOnPop = closeOnPop ?? !Platform.isIOS,
super(key: key);