Authored by 李犇

个人中心android版下拉刷新去除——review by 于良

... ... @@ -11,7 +11,6 @@ import ReactNative, {
TouchableOpacity,
Platform,
PixelRatio,
RefreshControl,
} from 'react-native';
import Immutable, {Map} from 'immutable';
... ... @@ -106,18 +105,6 @@ export default class MineList extends React.Component {
this.props.onMineCenterRefresh && this.props.onMineCenterRefresh();
}
}}
refreshControl=
{
profile.uid == '0' || Platform.OS === 'ios' ? null:
<RefreshControl
refreshing={false}
onRefresh={() => {
this.props.onMineCenterRefresh && this.props.onMineCenterRefresh();
}}
colors={['#000000', '#ff0000']}
progressBackgroundColor="#ffffff"
/>
}
/>
</View>
);
... ...