0
<FastImage
    style={{
      width: isImageLoaded ? "100%" : 0,
      height: isImageLoaded ? 400 : 0,
      borderRadius: 10,
      display: isImageLoaded ? "flex" : "none",
    }}
    source={{
      uri: photoData?.imgUrl,
      priority: FastImage.priority.normal,
    }}
    resizeMode="cover"
    onLoadEnd={() => setIsImageLoaded(true)}
/>

this is my code

Rajesh Pandya
  • 1,540
  • 4
  • 18
  • 31

0 Answers0