You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
2.0 KiB

1 year ago
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. x:Class="GMCabsDriverAssistantSolution.Styles.PhoneLayoutStyle">
  5. <x:String x:Key="GMImage">gmlogo.png</x:String>
  6. <x:String x:Key="GMCabsInformationMessageText">Call GM Cabs for assistance on</x:String>
  7. <Thickness x:Key="FrameCustomMargin">20,10,20,10</Thickness>
  8. <Thickness x:Key="LoginGridCustomMargin">20,30,20,0</Thickness>
  9. <Thickness x:Key="LoginButtonMargin">0,0,0,0</Thickness>
  10. <Thickness x:Key="RegisterLabelMargin">0,5,0,10</Thickness>
  11. <Thickness x:Key="ErrorLabelMargin">0,-5,0,0</Thickness>
  12. <Thickness x:Key="InformationLabelMargin">0,0,0,0</Thickness>
  13. <Thickness x:Key="AdminSetUpButtonMargin">20,0,20,5</Thickness>
  14. <Style x:Key="ImageStyle" TargetType="Image">
  15. <Setter Property="Margin" Value="28,10,28,0"/>
  16. <Setter Property="Scale" Value="1.0"/>
  17. </Style>
  18. <Style x:Key="NoUnderlineEntryFrameStyle" TargetType="Frame">
  19. <Setter Property="Padding">
  20. <OnPlatform x:TypeArguments="Thickness">
  21. <On Platform="Android">16,4</On>
  22. <On Platform="iOS">16</On>
  23. </OnPlatform>
  24. </Setter>
  25. <Setter Property="CornerRadius" Value="12"></Setter>
  26. <Setter Property="Margin" Value="4,8,4,4"></Setter>
  27. <Setter Property="HasShadow" Value="True"></Setter>
  28. <Setter Property="MinimumHeightRequest" Value="50" />
  29. <Setter Property="BackgroundColor" Value="White" />
  30. </Style>
  31. <Style x:Key="EntryStyle" TargetType="Entry">
  32. <Setter Property="TextColor" Value="#000"></Setter>
  33. <Setter Property="PlaceholderColor" Value="#9999"></Setter>
  34. <Setter Property="TranslationY" Value="1" />
  35. <Setter Property="MinimumHeightRequest" Value="36" />
  36. <Setter Property="Margin" Value="0,0,0,-8"></Setter>
  37. </Style>
  38. </ResourceDictionary>