ArcaneHoverCard constructor

const ArcaneHoverCard({
  1. required Widget trigger,
  2. Widget? content,
  3. String? textContent,
  4. FloatingTrigger triggerType = FloatingTrigger.hover,
  5. FloatingPosition position = FloatingPosition.top,
  6. bool? isOpen,
  7. void onOpenChange(
    1. bool isOpen
    )?,
  8. bool showArrow = true,
  9. int offset = 8,
  10. int openDelay = 0,
  11. int closeDelay = 0,
  12. double? maxWidth,
  13. bool closeOnOutsideClick = true,
  14. bool closeOnEscape = true,
  15. Key? key,
})

Implementation

const ArcaneHoverCard({
  required this.trigger,
  this.content,
  this.textContent,
  this.triggerType = FloatingTrigger.hover,
  this.position = FloatingPosition.top,
  this.isOpen,
  this.onOpenChange,
  this.showArrow = true,
  this.offset = 8,
  this.openDelay = 0,
  this.closeDelay = 0,
  this.maxWidth,
  this.closeOnOutsideClick = true,
  this.closeOnEscape = true,
  super.key,
});