| 334 | } |
| 335 | |
| 336 | void ViewNodeScrollState::notifyOnScrollEnd(const Point& directionAgnosticContentOffset, |
| 337 | const Point& directionAgnosticUnclampedContentOffset) { |
| 338 | _scrolling = false; |
| 339 | if (_onScrollEndCallback != nullptr) { |
| 340 | VALDI_TRACE("Valdi.notifyOnScrollEnd") |
| 341 | static Point velocity = Point(0, 0); |
| 342 | submitScrollEndEvent(_onScrollEndCallback, |
| 343 | ValueFunctionFlagsNone, |
| 344 | directionAgnosticContentOffset, |
| 345 | directionAgnosticUnclampedContentOffset, |
| 346 | velocity); |
| 347 | } |
| 348 | } |
| 349 | |
| 350 | static Value makeScrollEvent(const Point& directionAgnosticContentOffset, |
| 351 | const Point& directionAgnosticUnclampedContentOffset, |