Closed
Description
On a Nativescript xml coding, when using Ternary Operators with <
I got the error above, but not when using something like that !=
:
XML formatting failed: at line 13, column 76: expected exclamation mark, question mark or alphabetic tag name.
<StackLayout>
<Label text="label with just < " visibility="{{ p.status < 1 ? 'visible' : 'collapsed' }}" />
<Label text="labe with != " visibility="{{ p.status != 1 ? 'visible' : 'collapsed' }}" />
</StackLayout>