FTooltipGroup constructor
const
FTooltipGroup({
- required Widget child,
- Duration activeDuration = const Duration(milliseconds: 300),
- bool hover = true,
- Duration hoverEnterDuration = defaultHoverEnterDuration,
- Duration hoverExitDuration = defaultHoverExitDuration,
- bool longPress = true,
- Duration longPressExitDuration = defaultLongPressExitDuration,
- Key? key,
Creates a tooltip group.
Implementation
const FTooltipGroup({
required this.child,
this.activeDuration = const Duration(milliseconds: 300),
this.hover = true,
this.hoverEnterDuration = defaultHoverEnterDuration,
this.hoverExitDuration = defaultHoverExitDuration,
this.longPress = true,
this.longPressExitDuration = defaultLongPressExitDuration,
super.key,
});