import React from 'react'; import { StyleSheet, Image } from 'react-native'; import StatusBar from '../containers/StatusBar'; import { isAndroid } from '../utils/deviceInfo'; import { withTheme } from '../theme'; const styles = StyleSheet.create({ image: { width: '100%', height: '100%', backgroundColor: 'white' } }); export default React.memo(withTheme(({ theme }) => ( <> {isAndroid ? ( ) : null } )));