Vladimir Djukic
Vladimir Djukic

Reputation: 965

Nativescript text around another text

How can I make text to be around other text or image? I need something like this:

Label1 Label1 Label2
Label1 Label1 Label1
...

Label1 is all around Label 2...

Here is what I tried:

<FlexboxLayout width="100%" row="1">
        <Label [text]="item.description" textWrap="true"></Label>
        <Label text="3.33" width="100" height="50" textWrap="true"></Label>
</FlexboxLayout>

But It not looking good...

Upvotes: 0

Views: 105

Answers (1)

Manoj
Manoj

Reputation: 21888

I don't think that is supported out of the box yet, but if you are interested you could use the native solution for iOS / Android.

Upvotes: 1

Related Questions