I'm using the code below, but it's not rendering anything the values of my array. I even tested using <Text></Text> or other tags. I know that the array is populated because I get results back when I console.log(imageArray).
<View>
{
imageArray.map((array, index) => {
<TouchableOpacity key={index}>
<Image
source={{ uri: array }}
style={{ width: 150, height: 150 }}
/>
</TouchableOpacity >
})
}
</View>
returnstatement or remove the arrow function brackets