react-native-cached-image icon indicating copy to clipboard operation
react-native-cached-image copied to clipboard

Sometimes image doesn't show (only Android)

Open kuznetsov-online opened this issue 7 years ago • 3 comments

const image = {uri: 'http://my.bamps.online/cfs/files/images/D8Xg27puAiqjvKetD?store=normal'}

export default class App extends Component<{}> {
  render() {
    return (
      <View style={{backgroundColor:'#777'}}>
        <CachedImage source={image} style={{width: 100, height: 100}}/>
        <CachedImage source={image} style={{width: 200, height: 100}}/>
        <CachedImage source={image} style={{width: 300, height: 100}}/>
        <Image source={image} style={{width: 100, height: 100}}/>
        <Image source={image} style={{width: 200, height: 100}}/>
        <Image source={image} style={{width: 300, height: 100}}/>
      </View>
    );
  }
}

Android: 2017-12-06_14-32-52

iOS: 2017-12-06_14-33-26

kuznetsov-online avatar Dec 06 '17 10:12 kuznetsov-online

Happened with me too. I don't know how to reproduce this but sometimes the default image does not show on android

pavanmehta91 avatar Dec 12 '17 09:12 pavanmehta91

@FiW @pavanmehta91 have you guys managed to fix it. this seems like major issue to me. I have a carousel and its trying to render with CachedImage but out of 10 only 2 images appear. remaining ends in the onError callback.

bitshadow avatar Jan 27 '18 07:01 bitshadow

have anyone solve this issue? I have same problem here

fthrhmn avatar Sep 07 '18 09:09 fthrhmn