hoverables library
Classes
- HoverBuilder
- A widget that detects mouse hover events and notifies its child. This widget is useful when you want to change the appearance of a widget when the mouse hovers over it.
-
HoverBuilderState<
T extends HoverBuilder> - State class for HoverBuilder widget.
Typedefs
- HoverWidgetBuilder = Widget Function(BuildContext context, bool hovering, Widget? child)
-
Builder function type for HoverBuilder where
hovering
is a boolean indicating whether the widget is currently being hovered or not.child
is the child widget of HoverBuilder which won't be rebuilt whenhovering
changes.