Is your feature request related to a problem? Please describe.
I would like to use float to wrap text around images. Is this possible with current implementation? I don't want to use flex-flow: row to have image and text in one row. because I want to wrap text around an image. The text could be 10 pages long like a lot of articles in news do.

Describe the solution you'd like
<View>
<Image
src="https://avatars1.githubusercontent.com/u/5691926?s=460&v=4"
style={{ width: 100, float: 'left' }}
/>
<Text>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse
ut ligula ullamcorper, sodales ante dignissim, commodo lorem. In a
egestas ex. Sed rhoncus lorem posuere massa rutrum consectetur. In
at augue vitae risus fermentum volutpat sagittis nec ex.
</Text>
</View>
Describe alternatives you've considered
Using flex, but it's not possible to wrap text under the image with it.
Is your feature request related to a problem? Please describe.
I would like to use float to wrap text around images. Is this possible with current implementation? I don't want to use
flex-flow: rowto have image and text in one row. because I want to wrap text around an image. The text could be 10 pages long like a lot of articles in news do.Describe the solution you'd like
Describe alternatives you've considered
Using
flex, but it's not possible to wrap text under the image with it.