Someone may want to implement a richtext edit or richtext view. In html we can do it with inline image tag, but react-native Text can only nest Text in it.
Here's a workaround that'll preserve styles
<View style={{flexDirection:'row', flexWrap:'wrap'}}>
<Image
style={styles.img}
source={{uri: imageLink}} />
<Text>
{"sweet, this works"}
</Text>
</View>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With