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