We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba992c5 commit 9394b4eCopy full SHA for 9394b4e
MJRefresh.js
@@ -9,6 +9,7 @@ import {
9
UIManager,
10
ScrollView as NativeScrollView,
11
Platform,
12
+ ListView as NativeListView,
13
} from 'react-native';
14
import PropTypes from 'prop-types'
15
import MJScrollView from './MJScrollView'
@@ -79,5 +80,5 @@ MJRefresh.propTypes={
79
80
...ViewPropTypes
81
}
82
export const ScrollView = Platform.OS === 'ios' ? MJScrollView : NativeScrollView;
-export const ListView = MJListView;
83
+export const ListView = Platform.OS === 'ios' ? MJListView : NativeListView;
84
export default MJRefresh;
0 commit comments