'React Native image in not loading at full quality and expofastimage is also not showing the image

I am learning react native.I use expo. But when I used the image in react native it is not good at all. When react native image is rendered its quality is too low. Then I searched on this thing but what I got is a package expofastimage. I used that package but the problem is that the expofastimage is not even loading the image. The image is not showing.

<ExpoFastImage
          uri="https://www.asurascans.com/wp-content/uploads/2022/03/00-105.jpg" // image address
          cacheKey="2" // could be a unque id
          style={{
            margin: 100,
            width: 100,
            height: "auto",
            resizeMode: "contain",
          }} // your custom style object
          // any supported props by Image
        />

Even if I remove resizemode.The problem still remain.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source