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

Android Images Disappearing

Open prsauer opened this issue 4 years ago • 5 comments

Describe the bug After scrolling through ~40 elements, this happens on some android devices:

https://www.youtube.com/watch?v=sted0e7k79w

Notes: I couldn't find any constellation of props (clipped subviews, windowing) for flatlist that would prevent this from happening. It occurs regardless of the fallback prop but does NOT happen if I revert back to using vanilla Image components.

This is the rough source for the image component shown: <View style={[{ height: size, width: size }, this.props.contentContainerStyle]}> <FastImage source={{ uri: this.props.featureImageUrl }} style={[styles.icon, sizeStyle]} resizeMode={"cover"} fallback={true} > <Image source={{ uri: this.props.logoUrl }} style={[styles.iconLogo, sizeStyle]} /> </FastImage> </View>

  • React Native version: "react-native": "0.59.8",
  • React version: "react": "16.8.3",
  • React Native Fast Image version: "react-native-fast-image": "^5.2.0",

prsauer avatar Jul 23 '19 19:07 prsauer