I got a bunch of data from my database and I am mapping all of them, my image field is also part of that database and in that, I am storing the URL of that specific image link, but I am not able to map pictures cuz URI needs to be a string and the data I am getting is of type int, here is the code
Code
data.map((key)=>{ return( <View> <Image style={styles.myImage} source={{ uri:`${key.link}` }} /> </View> ) })