HoverCard constructor
const
HoverCard({
- Key? key,
- required Widget child,
- required WidgetBuilder hoverBuilder,
- Duration debounce = const Duration(milliseconds: 500),
- Duration wait = const Duration(milliseconds: 500),
- AlignmentGeometry popoverAlignment = Alignment.topCenter,
- AlignmentGeometry? anchorAlignment,
- Offset popoverOffset = const Offset(0, 8),
- HitTestBehavior behavior = HitTestBehavior.deferToChild,
- PopoverController? controller,
- OverlayHandler? handler,
Implementation
const HoverCard({
super.key,
required this.child,
required this.hoverBuilder,
this.debounce = const Duration(milliseconds: 500),
this.wait = const Duration(milliseconds: 500),
this.popoverAlignment = Alignment.topCenter,
this.anchorAlignment,
this.popoverOffset = const Offset(0, 8),
this.behavior = HitTestBehavior.deferToChild,
this.controller,
this.handler,
});