Hi,
Suppose I have this label in my view, which concats a plain string to a data-bound variable:
<Label text="{{ 'Hi ' + name }}" textWrap="true" style="horizontal-align: center"/>
That works fine. However, if I have "Hi, " instead of "Hi ", it will break silently.
<Label text="{{ 'Hi, ' + name }}" textWrap="true" style="horizontal-align: center"/>
Hi,
Suppose I have this label in my view, which concats a plain string to a data-bound variable:
That works fine. However, if I have "Hi, " instead of "Hi ", it will break silently.