如何使用Angular将文字环绕在Nativescript中的图像上?如下图所示:
查看此图片 https://www.coffeecup.com/files/images/image_wrap_align.png
这是我尝试做的事情:
<StackLayout class="item">
<Label class="title" text="Example 1"></Label>
<FlexLayout orientation="horizontal" flexWrap="wrap">
<Image class="image" src="~/image.png" stretch="none"></Image>
<Label class="description" text="This is description" textWrap="true"></Label>
</FlexLayout>
</StackLayout>