Closed
Description
Is the idea behind the HtmlView that it enables us to create a single line of html-formated code?
When I'm giving a HtmlView the html: hi<br>by
it only displays the first line: hi
.
The View is the simplest possible:
<Page xmlns="http://www.nativescript.org/tns.xsd" navigatingTo="navigatingTo" loaded="loaded">
<StackLayout>
<HtmlView html="{{html}}" />
</StackLayout>
</Page>
Or am I doing something wrong here?