I am working to show a notification in the form of a red dot or a number on Bottom Navigation item for Nativescript - Angular - Android. so far i could only find solutions related to TabView. ( https://discourse.nativescript.org/t/nativescript-android-add-badge-on-tabview-tabs/4768/14)
How can i add the mechanism ? is it possible to use the StackLayout within TabStripItem? it gives no output when i use.
<BottomNavigation>
<TabStrip>
<TabStripItem>
<Label text="Profile"></Label>
<Image src="font://" class="fas "></Image>
</TabStripItem>
</TabStrip>
</BottomNavigation>
<TabContentItem>
<page-router-outlet name="homeTab" actionBarVisibility="never"></page-router-outlet>
</TabContentItem>
Thanks