Created
February 19, 2020 15:50
-
-
Save devoirtechsandip/5b8c281c620639e0d35156b1b8feaccd to your computer and use it in GitHub Desktop.
Tabbar Icon Trigger
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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