Merge pull request #1226 from NativeScript/tabview-font

font-family implemented
This commit is contained in:
Vladimir Enchev
2015-12-10 15:11:52 +02:00
7 changed files with 133 additions and 9 deletions

View File

@@ -0,0 +1,16 @@
<Page xmlns="http://schemas.nativescript.org/tns.xsd">
<TabView style="font-family: FontAwesome;color: red;" selectedColor="green">
<TabView.items>
<TabViewItem ios:title="Tab 1 &#xf179;" android:title="Tab 1 &#xf17b;">
<TabViewItem.view>
<Label text="Tab 1" />
</TabViewItem.view>
</TabViewItem>
<TabViewItem ios:title="Tab 2 &#xf179;" android:title="Tab 2 &#xf17b;">
<TabViewItem.view>
<Label text="Tab 2" />
</TabViewItem.view>
</TabViewItem>
</TabView.items>
</TabView>
</Page>