Created
June 28, 2017 03:06
-
-
Save Char0394/746f7868c83da58157562ab0f7ba4d19 to your computer and use it in GitHub Desktop.
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <Application xmlns="http://xamarin.com/schemas/2014/forms" | |
| xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | |
| x:Class="FontSample.App"> | |
| <Application.Resources> | |
| <ResourceDictionary> | |
| <Style TargetType="NavigationPage"> | |
| <Setter Property="BackgroundColor" Value="White" /> | |
| <Setter Property="BarBackgroundColor" Value="#08adcf" /> | |
| </Style> | |
| <Style TargetType="Label"> | |
| <Setter Property="FontFamily" Value="orangejuice" /> | |
| <Setter Property="FontSize" Value="16" /> | |
| <Setter Property="TextColor" Value="Black" /> | |
| </Style> | |
| <Style TargetType="Button"> | |
| <Setter Property="FontFamily" Value="orangejuice" /> | |
| <Setter Property="FontSize" Value="16" /> | |
| <Setter Property="TextColor" Value="White" /> | |
| <Setter Property="BackgroundColor" Value="Black" /> | |
| </Style> | |
| <Style TargetType="Entry"> | |
| <Setter Property="FontFamily" Value="orangejuice" /> | |
| <Setter Property="FontSize" Value="16" /> | |
| </Style> | |
| <Style TargetType="StackLayout"> | |
| <Setter Property="Padding" Value="20" /> | |
| </Style> | |
| </ResourceDictionary> | |
| </Application.Resources> | |
| </Application> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment