|
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="GMCabsDriverAssistantSolution.Styles.PhoneLayoutStyle">
|
|
<x:String x:Key="GMImage">gmlogo.png</x:String>
|
|
<x:String x:Key="GMCabsInformationMessageText">Call GM Cabs for assistance on</x:String>
|
|
|
|
<Thickness x:Key="FrameCustomMargin">20,10,20,10</Thickness>
|
|
<Thickness x:Key="LoginGridCustomMargin">20,30,20,0</Thickness>
|
|
<Thickness x:Key="LoginButtonMargin">0,0,0,0</Thickness>
|
|
<Thickness x:Key="RegisterLabelMargin">0,5,0,10</Thickness>
|
|
<Thickness x:Key="ErrorLabelMargin">0,-5,0,0</Thickness>
|
|
<Thickness x:Key="InformationLabelMargin">0,0,0,0</Thickness>
|
|
<Thickness x:Key="AdminSetUpButtonMargin">20,0,20,5</Thickness>
|
|
|
|
<Style x:Key="ImageStyle" TargetType="Image">
|
|
<Setter Property="Margin" Value="28,10,28,0"/>
|
|
<Setter Property="Scale" Value="1.0"/>
|
|
</Style>
|
|
<Style x:Key="NoUnderlineEntryFrameStyle" TargetType="Frame">
|
|
<Setter Property="Padding">
|
|
<OnPlatform x:TypeArguments="Thickness">
|
|
<On Platform="Android">16,4</On>
|
|
<On Platform="iOS">16</On>
|
|
</OnPlatform>
|
|
</Setter>
|
|
<Setter Property="CornerRadius" Value="12"></Setter>
|
|
<Setter Property="Margin" Value="4,8,4,4"></Setter>
|
|
<Setter Property="HasShadow" Value="True"></Setter>
|
|
<Setter Property="MinimumHeightRequest" Value="50" />
|
|
<Setter Property="BackgroundColor" Value="White" />
|
|
</Style>
|
|
<Style x:Key="EntryStyle" TargetType="Entry">
|
|
<Setter Property="TextColor" Value="#000"></Setter>
|
|
<Setter Property="PlaceholderColor" Value="#9999"></Setter>
|
|
<Setter Property="TranslationY" Value="1" />
|
|
<Setter Property="MinimumHeightRequest" Value="36" />
|
|
<Setter Property="Margin" Value="0,0,0,-8"></Setter>
|
|
</Style>
|
|
</ResourceDictionary>
|