HoverCard constructor
const
HoverCard({
- Key? key,
- required Widget child,
- required WidgetBuilder hoverBuilder,
- Duration debounce = const Duration(milliseconds: 500),
- Duration wait = const Duration(milliseconds: 500),
- Alignment popoverAlignment = Alignment.topCenter,
- Alignment? anchorAlignment,
- Offset popoverOffset = const Offset(0, 8),
- HitTestBehavior behavior = HitTestBehavior.deferToChild,
- PopoverController? controller,
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,
});