isPointerOverScrollbar method Null safety
- Offset position,
- PointerDeviceKind kind,
- {bool forHover = false}
protected">@protected
Returns true if the provided Offset is located over the track or thumb of the RawScrollbar.
The hit test area for mouse hovering over the scrollbar is larger than
regular hit testing. This is to make it easier to interact with the
scrollbar and present it to the mouse for interaction based on proximity.
When forHover
is true, the larger hit test area will be used.
Implementation
@protected
bool isPointerOverScrollbar(Offset position, PointerDeviceKind kind, { bool forHover = false }) {
if (_scrollbarPainterKey.currentContext == null) {
return false;
}
final Offset localOffset = _getLocalOffset(_scrollbarPainterKey, position);
return scrollbarPainter.hitTestInteractive(localOffset, kind, forHover: true);
}