44 lines
2.2 KiB
XML
44 lines
2.2 KiB
XML
<?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="BookAStar.App" >
|
|
<Application.Resources>
|
|
<ResourceDictionary>
|
|
<OnPlatform x:TypeArguments="Font" Android="Large" iOS="Large" WinPhone="Large" x:Key="HeaderFont" />
|
|
<OnPlatform x:TypeArguments="Color" Android="White" iOS="White" WinPhone="White" x:Key="PrimaryTextColor" />
|
|
<OnPlatform x:TypeArguments="Font" Android="40" iOS="60" WinPhone="60" x:Key="LargeFontSize" />
|
|
<OnPlatform x:TypeArguments="Font" Android="30" iOS="60" WinPhone="60" x:Key="MediumFontSize" />
|
|
|
|
<Color x:key="backgroundColor">#30FAFAFA</Color>
|
|
<Color x:key="textColor">#FF103010</Color>
|
|
<Color x:key="labelColor">#FF303010</Color>
|
|
<Style x:Key="labelStyle" TargetType="Label">
|
|
<Setter Property="TextColor" Value="{DynamicResource labelColor}" />
|
|
<Setter Property="FontAttributes" Value="Bold" />
|
|
<Setter Property="FontSize" Value="Large" />
|
|
<Setter Property="VerticalOptions" Value="Start" />
|
|
<Setter Property="XAlign" Value="Center" />
|
|
</Style>
|
|
<Style x:Key="entryStyle" TargetType="Entry">
|
|
<Setter Property="HorizontalOptions" Value="FillAndExpand"/>
|
|
</Style>
|
|
<Style x:key="backbroundStyle" TargetType="VisualElement">
|
|
<Setter Property="BackgoundColor" Value="{DynamicResource backgroundColor}" />
|
|
</Style>
|
|
<Style x:Key="buttonStyle" TargetType="Button">
|
|
<Setter Property="HorizontalOptions" Value="Center" />
|
|
<Setter Property="VerticalOptions" Value="CenterAndExpand" />
|
|
<Setter Property="BorderColor" Value="Lime" />
|
|
<Setter Property="BorderRadius" Value="5" />
|
|
<Setter Property="BorderWidth" Value="5" />
|
|
<Setter Property="WidthRequest" Value="200" />
|
|
<Setter Property="TextColor" Value="Teal" />
|
|
</Style>
|
|
<Style TargetType="Label">
|
|
<Setter Property="FontSize" Value="Large" />
|
|
<Setter Property="FontAttributes" Value="Bold" />
|
|
</Style>
|
|
</ResourceDictionary>
|
|
</Application.Resources>
|
|
|
|
</Application> |