diff --git a/Libraries/CustomComponents/ListView/ListView.js b/Libraries/CustomComponents/ListView/ListView.js index f2f0ac4a4..13457c28b 100644 --- a/Libraries/CustomComponents/ListView/ListView.js +++ b/Libraries/CustomComponents/ListView/ListView.js @@ -596,6 +596,10 @@ var ListView = React.createClass({ var rowID = rowIDs[rowIdx]; var frame = this._childFrames[totalIndex]; totalIndex++; + if(this.props.renderSeparator && + (rowIdx !== rowIDs.length - 1 || sectionIdx === allRowIDs.length - 1)){ + totalIndex++; + } if (!frame) { break; }