SheetHandleBar constructor
const
SheetHandleBar({
- Key? key,
- required bool expanded,
- required GestureDragUpdateCallback onVerticalDragUpdate,
- required GestureDragEndCallback onVerticalDragEnd,
- required VoidCallback onVerticalDragCancel,
- Duration? duration,
- Curve curve = Curves.easeOutCubic,
- String? semanticLabel,
- String? expandLabel,
- String? collapseLabel,
- String? dismissLabel,
- VoidCallback? onTap,
Implementation
const SheetHandleBar({
super.key,
required this.expanded,
required this.onVerticalDragUpdate,
required this.onVerticalDragEnd,
required this.onVerticalDragCancel,
this.duration,
this.curve = Curves.easeOutCubic,
this.semanticLabel,
this.expandLabel,
this.collapseLabel,
this.dismissLabel,
this.onTap,
});