diff --git a/app/views/RoomView/List/RefreshControl.tsx b/app/views/RoomView/List/RefreshControl.tsx index 2f6b28f35..c26416435 100644 --- a/app/views/RoomView/List/RefreshControl.tsx +++ b/app/views/RoomView/List/RefreshControl.tsx @@ -19,18 +19,18 @@ interface IRefreshControl extends RefreshControlProps { const RefreshControl = ({ children, onRefresh, refreshing }: IRefreshControl): React.ReactElement => { const { colors } = useTheme(); - if (isAndroid) { - return ( - - {children} - - ); - } + // if (isAndroid) { + // return ( + // + // {children} + // + // ); + // } const refreshControl = ; diff --git a/app/views/RoomView/List/index.tsx b/app/views/RoomView/List/index.tsx index 37820975e..fac2a8827 100644 --- a/app/views/RoomView/List/index.tsx +++ b/app/views/RoomView/List/index.tsx @@ -23,13 +23,13 @@ import RefreshControl from './RefreshControl'; const QUERY_SIZE = 50; const styles = StyleSheet.create({ - inverted: { - ...Platform.select({ - android: { - scaleY: -1 - } - }) - } + // inverted: { + // ...Platform.select({ + // android: { + // scaleY: -1 + // } + // }) + // } }); const onScroll = ({ y }: { y: Value }) =>