Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save devoirtechsandip/5b8c281c620639e0d35156b1b8feaccd to your computer and use it in GitHub Desktop.

Select an option

Save devoirtechsandip/5b8c281c620639e0d35156b1b8feaccd to your computer and use it in GitHub Desktop.
Tabbar Icon Trigger
<TabbedPage.Children>
<views:Depot>
<views:Depot.Triggers>
<Trigger TargetType="ContentPage" Property="IsFocused" Value="False">
<Setter Property="IconImageSource">
<Setter.Value>
<FontImageSource FontFamily="{StaticResource FontAwesomeSolid}" Glyph="{x:Static fontawesome:FontAwesomeIcons.Bus}" />
</Setter.Value>
</Setter>
</Trigger>
<Trigger TargetType="ContentPage" Property="IsFocused" Value="True">
<Setter Property="IconImageSource">
<Setter.Value>
<FontImageSource FontFamily="{StaticResource FontAwesomeSolid}" Glyph="{x:Static fontawesome:FontAwesomeIcons.BusAlt}" />
</Setter.Value>
</Setter>
</Trigger>
</views:Depot.Triggers>
</views:Depot>
<views:Station />
<views:Train />
</TabbedPage.Children>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment