From cedc162bef07cf114874c26858deb8bc0037ac64 Mon Sep 17 00:00:00 2001 From: Bill Thornton Date: Wed, 18 Dec 2019 13:50:44 -0500 Subject: [PATCH] Disable pull to refresh on Android --- screens/HomeScreen.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/screens/HomeScreen.js b/screens/HomeScreen.js index 70c5a895..8e179dfc 100644 --- a/screens/HomeScreen.js +++ b/screens/HomeScreen.js @@ -155,10 +155,12 @@ export default class HomeScreen extends React.Component { style={styles.container} contentContainerStyle={{flexGrow: 1}} refreshControl={ - this.onRefresh()} - /> + Platform.OS === 'ios' ? ( + this.onRefresh()} + /> + ) : null } > {!this.state.isVideoPlaying && (