diff --git a/Libraries/Lists/SectionList.js b/Libraries/Lists/SectionList.js index f56673cbe9..1f5e54f4ee 100644 --- a/Libraries/Lists/SectionList.js +++ b/Libraries/Lists/SectionList.js @@ -317,6 +317,13 @@ class SectionList> extends React.PureComponent< } } + setNativeProps(props: Object) { + const listRef = this._wrapperListRef && this._wrapperListRef.getListRef(); + if (listRef) { + listRef.setNativeProps(props); + } + } + render() { const List = this.props.legacyImplementation ? MetroListView