HoverCard constructor

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