SwipeManager constructor
const
SwipeManager({
- Key? key,
- double initialValue = 1.0,
- ChangeCallback? onChange,
- FinishCallback? onFinish,
- SlideDirection direction = SlideDirection.vertical,
- Color color = const Color.fromRGBO(46, 45, 36, 0.5),
- Color fillColor = Colors.white,
- Widget? child,
- ChildBuilder? childBuilder,
- double width = 20,
- double height = 200,
Creates a SwipeManager widget.
Implementation
const SwipeManager({
super.key,
this.initialValue = 1.0,
this.onChange,
this.onFinish,
this.direction = SlideDirection.vertical,
this.color = const Color.fromRGBO(46, 45, 36, 0.5),
this.fillColor = Colors.white,
this.child,
this.childBuilder,
this.width = 20,
this.height = 200,
});