升級React Native
到最新版本出現了一個Warning
:html
Warning:In next release empty section headers will be rendered. In this release you can use 'enableEmptySections' flag to render empty section headers
這個錯誤出如今ListView
中,在之後的版本中才會實現空的section headers
做爲默認值,當前版本並無支持。
若是咱們不須要使用headers的話,能夠禁止EmptySections。
解決方法:react
<ListView style={styles.listView} dataSource={this.state.dataSource} enableEmptySections={true} />
參考文檔:
http://facebook.github.io/react-native/docs/listview.html#enableemptysectionsgit