widget_tooltip 1.2.2
widget_tooltip: ^1.2.2 copied to clipboard
Widget Tooltip is a Flutter package that provides a tooltip widget that can be used to display a tooltip on any widget
1.2.2 #
Bug Fixes #
- direction in ListView: Fix
directionparameter being ignored insideListViewand other scrollable widgets (#7) - tooltip positioning: Fix tooltip appearing near screen center instead of target due to incorrect measurement constraints
- scale animation: Fix scale animation not working — now triangle and message box animate as a unified element
Improvements #
- Two-phase positioning: Restore proven measure-then-position approach for reliable tooltip placement
- Combined tooltip element: Triangle and message box are now a single composite widget, ensuring consistent animation behavior
- ListView example: Add ListView tab to example app for testing scroll scenarios
1.2.1 #
Improvements #
- Unified tooltip widget: Merge triangle and message box into a single widget for smoother animations
- Better scale animation: Scale animation now expands from a single center point instead of separately
- Code simplification: Remove
triangleOffsetcalculation andkTriangleOverlapOffsetconstant
1.2.0 #
Features #
- autoFlip: Add
autoFlipproperty to automatically flip tooltip direction when there's not enough space at screen edges - hover: Add
WidgetTooltipTriggerMode.hoverfor Desktop/Web mouse hover support
Breaking Changes #
- messageStyle removed: Remove unused
messageStyleproperty
Deprecations #
- tapAnyWhere: Deprecate
WidgetTooltipDismissMode.tapAnyWherein favor oftapAnywhere(correct spelling)
Bug Fixes #
- autoFlip: Simplified logic - now uses screen center to determine tooltip position (target in top half → tooltip below, target in bottom half → tooltip above)
- visibility: Auto-dismiss tooltip when target scrolls off-screen
Improvements #
- Add comprehensive documentation for
TooltipControllerandWidgetTooltipclasses - Refactor internal variable names for better code readability
- Remove unused
isLeft/isRightparameters from internal_TooltipOverlaywidget - Improve example app with better styling and demonstrations
1.1.4 #
- Bug fixed: Fix right padding not working when text is long