I have the following code for my app that I created with NativeScript with Angular 2
<TabView>
<StackLayout *tabItem="{title: ' Profile " >
<Label class="fa" text=""></Label>
<Button class="fa" id="button" text=" Tap me!" ></Button>
</StackLayout>
<StackLayout *tabItem="{title: ' Stats">
<Label text="Second tab item"></Label>
</StackLayout>
<StackLayout *tabItem="{title: 'Settings'}">
<Label text="Third tab item"></Label>
</StackLayout>
</TabView>
here is am setting the icons for tabTitle as follows
<StackLayout *tabItem="{title: ' Profile " >
I am using fontAwesome but the icons set are simple not shown for the tab title. No placeholder for missing icons is shown either.
Icons do show up for labels and buttons.
Also is there a way I can add badges to tabs as shown in the below image
This is helpful when there is an update.
