Add custom fonts test page

This commit is contained in:
Vasil Chimev
2016-02-19 18:20:20 +02:00
parent a721506e1f
commit 2a8b2ae370
4 changed files with 17 additions and 2 deletions

View File

@ -0,0 +1,13 @@
<Page>
<StackLayout>
<Button text="Button" style="font-family: Sofia" />
<Label text="Label" style="font-family: Sofia" />
<TextField text="TextField" style="font-family: Sofia" />
<TextView text="TextView" style="font-family: Sofia" />
<Button text="Button" style="font-family: Pacifico" />
<Label text="Label" style="font-family: Pacifico" />
<TextField text="TextField" style="font-family: Pacifico" />
<TextView text="TextView" style="font-family: Pacifico" />
</StackLayout>
</Page>

Binary file not shown.

Binary file not shown.

View File

@ -55,11 +55,13 @@ examples.set("dialogs", "dialogs/dialogs");
examples.set("fontbtn", "font/button");
examples.set("fontlbl", "font/label");
examples.set("material", "font/material-icons");
examples.set("tabfont", "font/tab-view");
examples.set("fontfield", "font/text-field");
examples.set("fontview", "font/text-view");
examples.set("customfonts", "font/custom-fonts");
examples.set("material", "font/material-icons");
examples.set("tabfont", "font/tab-view");
examples.set("htmlview", "html-view/html-view");
examples.set("roundbtn", "image-view/rounded-buttons");