diff --git a/Libraries/Lists/VirtualizedList.js b/Libraries/Lists/VirtualizedList.js index 9b107b2c2cb2ea..42935dabdac80f 100644 --- a/Libraries/Lists/VirtualizedList.js +++ b/Libraries/Lists/VirtualizedList.js @@ -1491,10 +1491,12 @@ class VirtualizedList extends React.PureComponent { this.props.initialScrollIndex > 0 && !this._hasDoneInitialScroll ) { - this.scrollToIndex({ - animated: false, - index: this.props.initialScrollIndex, - }); + if (this.props.contentOffset == null) { + this.scrollToIndex({ + animated: false, + index: this.props.initialScrollIndex, + }); + } this._hasDoneInitialScroll = true; } if (this.props.onContentSizeChange) {