Files
NativeScript/apps/ui/app/image-view/font-icons-page.xml
Nathan Walker 1e6fccf272 chore: cleanup
2020-07-23 14:03:37 -07:00

17 lines
847 B
XML

<Page navigatingTo="navigatingTo">
<GridLayout rows="*, *, *" columns="*, *" height="200">
<!-- font family only -->
<Image row="0" col="0" src="font://&#xF10B;" class="font-awesome"/>
<!-- font family + font size -->
<Image row="0" col="1" src="font://&#xF10B;" class="font-awesome font-size"/>
<!-- font family + color -->
<Image row="1" col="0" src="font://&#xF10B;" class="font-awesome color"/>
<!-- font family + font size + color -->
<Image row="1" col="1" src="font://&#xF10B;" class="font-awesome font-size color"/>
<!-- default font + valid char code -->
<Image row="2" col="0" src="font://&#xF10B;" />
<!-- font family + invalid char code -->
<Image row="2" col="1" src="font://&#xF556;" class="font-awesome"/>
</GridLayout>
</Page>