FloatingPullUpCard constructor
const
FloatingPullUpCard({
- Key? key,
- FloatingCardBuilder? cardBuilder,
- Color cardColor = Colors.white,
- double? height,
- double? width,
- BorderRadius? borderRadius,
- required Widget child,
- required GestureDragUpdateCallback onDrag,
- required GestureDragEndCallback onDragEnd,
- double elevation = 4,
- DragHandleBuilder? dragHandlebuilder,
Implementation
const FloatingPullUpCard({
Key? key,
this.cardBuilder,
this.cardColor = Colors.white,
this.height,
this.width,
this.borderRadius,
required this.child,
required this.onDrag,
required this.onDragEnd,
this.elevation = 4,
this.dragHandlebuilder,
// this.onDragChange,
}) : super(key: key);