diff --git a/Examples/UIExplorer/js/ListViewExample.js b/Examples/UIExplorer/js/ListViewExample.js index 6c0e0d88c..ed79dcf84 100644 --- a/Examples/UIExplorer/js/ListViewExample.js +++ b/Examples/UIExplorer/js/ListViewExample.js @@ -29,7 +29,6 @@ var { ListView, TouchableHighlight, StyleSheet, - RecyclerViewBackedScrollView, Text, View, } = ReactNative; @@ -64,7 +63,6 @@ var ListViewSimpleExample = React.createClass({ } renderSeparator={this._renderSeparator} /> diff --git a/Examples/UIExplorer/js/SwipeableListViewExample.js b/Examples/UIExplorer/js/SwipeableListViewExample.js index 4d37ddc9f..1ebbbbc04 100644 --- a/Examples/UIExplorer/js/SwipeableListViewExample.js +++ b/Examples/UIExplorer/js/SwipeableListViewExample.js @@ -29,7 +29,6 @@ var { SwipeableListView, TouchableHighlight, StyleSheet, - RecyclerViewBackedScrollView, Text, View, Alert, @@ -76,7 +75,6 @@ var SwipeableListViewSimpleExample = React.createClass({ ); }} renderRow={this._renderRow} - renderScrollComponent={props => } renderSeparator={this._renderSeperator} /> diff --git a/Libraries/Inspector/NetworkOverlay.js b/Libraries/Inspector/NetworkOverlay.js index 8ca4a6453..9d47f482c 100644 --- a/Libraries/Inspector/NetworkOverlay.js +++ b/Libraries/Inspector/NetworkOverlay.js @@ -13,7 +13,6 @@ const ListView = require('ListView'); const React = require('React'); -const RecyclerViewBackedScrollView = require('RecyclerViewBackedScrollView'); const ScrollView = require('ScrollView'); const StyleSheet = require('StyleSheet'); const Text = require('Text'); @@ -367,12 +366,6 @@ class NetworkOverlay extends React.Component { this._listViewHeight = height; } - _renderScrollComponent(props: Object): React.Element { - return ( - - ); - } - /** * Popup a scrollView to dynamically show detailed information of * the request, when pressing a row in the network flow listView. @@ -500,7 +493,6 @@ class NetworkOverlay extends React.Component { ref={this._captureRequestListView} dataSource={this.state.dataSource} renderRow={this._renderRow} - renderScrollComponent={this._renderScrollComponent} enableEmptySections={true} renderSeparator={this._renderSeperator} onLayout={this._listViewOnLayout}