I have tried to use Ternary Operators with expression using < and 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 using < " visibility="{{ p.cond < 1 ? 'visible' : 'collapsed' }}" />
<Label text="label using != " visibility="{{ p.cond != 1 ? 'visible' : 'collapsed' }}" />
</StackLayout>
I have tried to use Ternary Operators with expression using
<and 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.