升級React Native
到最新版本出現(xiàn)了一個Warning
:
Warning:In next release empty section headers will be rendered.
In this release you can use 'enableEmptySections' flag to render empty section headers
這個錯誤出現(xiàn)在ListView
中途凫,在以后的版本中才會實現(xiàn)空的section headers
作為默認值晌杰,當前版本并沒有支持腥刹。
如果我們不需要使用headers的話右莱,可以禁止EmptySections祠墅。
解決方法:
<ListView
style={styles.listView}
dataSource={this.state.dataSource}
enableEmptySections={true}
/>
參考文檔:
http://facebook.github.io/react-native/docs/listview.html#enableemptysections