cursorDragZoneChanged method
Cursor drag-zone changed
rect
cursor's drag zoneancestor
contained all children and drag-zone rect
Implementation
void cursorDragZoneChanged(Rect rect, RenderObject? ancestor) {
if(selectTestThrottle.canProceed()) {
for (final item in _selectorTest.entries) {
final box = item.value;
final isSelected = box.selectTest(rect, ancestor);
_selectorController.add((item.key, isSelected));
}
}
}