Wrapping text around an image with React-Native

This is really hard but there is one weird way to do this.. Try the following. It worked for me but place I am doing this is too deep in the other views.:

<Text>
  <View style={{width:400, height:100, flex:1, flexDirection:'row'}}>
     <Image source={require('')}/>
     <Text>Your Content Here</Text>
  </View>

</Text>

Good luck. Please put a comment letting us know if it worked.


On android you cannot place a View inside Text, but you can place an Image, here is an example:

<Text> 
  <Image source="" />
  <Text> Insert your text here </Text>
</Text>