React NativeのListViewでenableEmptySectionsのエラーが出た際の対処法

ListViewでヘッダーがないと以下のようなエラーが出ることがあります。

Warning: In next release empty section headers will be rendered. In this release you can use 'enableEmptySections' flag to render empty section headers.
<ListView
  dataSource={this.state.dataSource}
  renderRow={this.renderRow}
  enableEmptySections
/>

のようにして enableEmptySections={true} のパラメータを指定してあげるといいようです。

参考

https://github.com/FaridSafi/react-native-gifted-listview/issues/39