scrollResponderIsAnimating: function()

in deprecated-react-native-listview/ScrollResponder.js [461:470]


  scrollResponderIsAnimating: function(): boolean {
    const now = global.performance.now();
    const timeSinceLastMomentumScrollEnd =
      now - this.state.lastMomentumScrollEndTime;
    const isAnimating =
      timeSinceLastMomentumScrollEnd < IS_ANIMATING_TOUCH_START_THRESHOLD_MS ||
      this.state.lastMomentumScrollEndTime <
        this.state.lastMomentumScrollBeginTime;
    return isAnimating;
  },