1<View>
2 <Image
3 source={yourImageUrl}
4 resizeMode={'cover'}
5 style={{
6 width: 300,
7 height: 300
8 }}
9 />
10
11 <View style={{ position: 'absolute', top: 0, left: 0, right: 0, height: 300, alignItems: 'center', justifyContent: 'center' }}>
12 <Text>Your overlay text</Text>
13 </View>
14</View>
15