1. 程式人生 > >React Native ListView警告:in next release empty section headers ...

React Native ListView警告:in next release empty section headers ...

升級React Native到最新版本出現了一個Warning

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
解決方法:

 <ListView
      style={styles.listView}       dataSource={this.state.dataSource}       enableEmptySections={true}       />

參考文件:
http://facebook.github.io/react-native/docs/listview.html#enableemptysections