Skip to content

Commit

Permalink
Fix regression of VirtualizedList jumpy header
Browse files Browse the repository at this point in the history
  • Loading branch information
Shrekie authored Feb 11, 2019
1 parent 72ad668 commit c1545a2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Libraries/Lists/VirtualizedList.js
Original file line number Diff line number Diff line change
Expand Up @@ -791,7 +791,9 @@ class VirtualizedList extends React.PureComponent<Props, State> {
const initBlock = this._getFrameMetricsApprox(lastInitialIndex);
const stickyBlock = this._getFrameMetricsApprox(ii);
const leadSpace =
stickyBlock.offset - (initBlock.offset + initBlock.length);
stickyBlock.offset -
initBlock.offset -
(this.props.initialScrollIndex ? 0 : initBlock.length);
cells.push(
<View key="$sticky_lead" style={{[spacerKey]: leadSpace}} />,
);
Expand Down

0 comments on commit c1545a2

Please sign in to comment.