diff --git a/Libraries/Lists/VirtualizedList.js b/Libraries/Lists/VirtualizedList.js index 4e039729d6..5adabc6719 100644 --- a/Libraries/Lists/VirtualizedList.js +++ b/Libraries/Lists/VirtualizedList.js @@ -272,6 +272,7 @@ class VirtualizedList extends React.PureComponent { return ; } }, + scrollEventThrottle: 50, updateCellsBatchingPeriod: 50, windowSize: 21, // multiples of length }; @@ -448,7 +449,7 @@ class VirtualizedList extends React.PureComponent { onScroll: this._onScroll, onScrollBeginDrag: this._onScrollBeginDrag, ref: this._captureScrollRef, - scrollEventThrottle: 50, // TODO: Android support + scrollEventThrottle: this.props.scrollEventThrottle, // TODO: Android support stickyHeaderIndices, }, cells,