Created
March 18, 2022 09:00
-
-
Save sjehutch/9682e0e82904738ae0a842ce8106a1f7 to your computer and use it in GitHub Desktop.
toolbar item android Xamarin
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
<ToolbarItem | |
Order="Primary" | |
AutomationId="EmailButton" | |
Command="{Binding MailCommand}" | |
Priority="1" > | |
<ToolbarItem.IconImageSource> | |
<FontImageSource | |
FontFamily="{StaticResource FontAwesomeSolidFontFamily}" | |
Glyph="{x:Static constants:AppConstant.MailIcon}" | |
Color="{DynamicResource TertiaryTextColor}" | |
/> | |
</ToolbarItem.IconImageSource> | |
</ToolbarItem> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment