Skip to content

Instantly share code, notes, and snippets.

@Char0394
Created June 28, 2017 03:06
Show Gist options
  • Select an option

  • Save Char0394/746f7868c83da58157562ab0f7ba4d19 to your computer and use it in GitHub Desktop.

Select an option

Save Char0394/746f7868c83da58157562ab0f7ba4d19 to your computer and use it in GitHub Desktop.
<?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