Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. FormsPlugin.Iconize.Droid.IconControls.Init(Resource.Id.toolbar);
  2. Plugin.Iconize.Iconize.With(new Plugin.Iconize.Fonts.FontAwesomeModule());
  3.  
  4. FormsPlugin.Iconize.iOS.IconControls.Init();
  5. Plugin.Iconize.Iconize.With(new Plugin.Iconize.Fonts.FontAwesomeModule())
  6.  
  7. <key>UIAppFonts</key>
  8. <array>
  9. <string>iconize-fontawesome.ttf</string>
  10. </array>
  11.  
  12. <ContentPage ...
  13. xmlns:iconize="clr-namespace:FormsPlugin.Iconize;assembly=FormsPlugin.Iconize" ...
  14. >
  15.  
  16. <ContentPage.ToolbarItems>
  17. <iconize:IconToolbarItem Order="Primary" Clicked="..." Icon="fa-search" IconColor="White" />
  18. </ContentPage.ToolbarItems>
  19.  
  20. <Button Text="Pesquisar">
  21. <Button.ImageSource>
  22. <FontImageSource Glyph="&#xf002;" FontFamily="{StaticResource FontIcon}"/>
  23. </Button.ImageSource>
  24. </Button>
  25.  
  26. <ContentPage.ToolbarItems>
  27. <ToolbarItem>
  28. <ToolbarItem.IconImageSource>
  29. <FontImageSource Glyph="&#xf002;" FontFamily="{StaticResource FontIcon}"/>
  30. </ToolbarItem.IconImageSource>
  31. </ToolbarItem>
  32. </ContentPage.ToolbarItems>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement