Guest User

Untitled

a guest
Aug 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <ResourceDictionary>
  2. <OnPlatform x:TypeArguments="x:String" x:Key="HeavyFont">
  3. <On Platform="Android" Value="YourFont-Heavy.ttf#YourFont" />
  4. <On Platform="iOS" Value="OpenSans-Bold" />
  5. </OnPlatform>
  6. <OnPlatform x:TypeArguments="x:String" x:Key="RegularFont">
  7. <On Platform="Android" Value="YourFont-Regular.ttf#YourFont" />
  8. <On Platform="iOS" Value="OpenSans-Regular" />
  9. </OnPlatform>
  10. </ResourceDictionary>
  11.  
  12. <StackLayout>
  13. <Label text="Helloworld heavy" FontFamily="{StaticResource HeavyFont}" />
  14. <Label text="Helloworld normal" FontFamily="{StaticResource NormalFont}" />
  15. </StackLayout>
Add Comment
Please, Sign In to add comment