I am trying to combine a string in a Label. The desired result is : USD 3000, where 3000 is the price number retrieved from the database. I have tried using the following code:
<Label row="2" col="1" text="USD {{ price }}" />
However, it does not work and only displays like this:
USD {{ price }}
Is there a way to directly concatenate a string in a text label? Any clues or suggestions would be greatly appreciated. Thank you.