1<View style={styles.imageWrapper}>
2 <ImageBackground style={styles.theImage} source={{uri : item.imageUrl}}>
3 <Text>Hey</Text>
4 </ImageBackground>
5</View>
6
7const styles = StyleSheet.create({
8 imageWrapper: {
9 height: 200,
10 width: 200,
11 overflow : "hidden"
12 },
13 theImage: {
14 width: "100%",
15 height: "100%",
16 resizeMode: "cover",
17 }
18})