Xam.Shell.Badge
Xam.Shell.Badge copied to clipboard
Badge displayed on wrong tab after title change
Steps to Reproduce
- Create new project with tabs
- Add badge for one tab
- Bind tab title with xct:Translate
- Change localization
Example test project
<TabBar>
<Tab Title="About" Icon="icon_about.png">
<ShellContent Route="AboutPage" ContentTemplate="{DataTemplate local:AboutPage}" />
</Tab>
<Tab Title="{xct:Translate Items}"
Icon="icon_feed.png"
badge:Badge.Text="1"
badge:Badge.BackgroundColor="Red">
<ShellContent ContentTemplate="{DataTemplate local:ItemsPage}" />
</Tab>
</TabBar>