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.

20 lines
950 B

1 year ago
  1. <?xml version = "1.0" encoding = "UTF-8" ?>
  2. <Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. xmlns:local="clr-namespace:GMCabsDriverAssistantSolution"
  5. x:Class="GMCabsDriverAssistantSolution.App">
  6. <Application.Resources>
  7. <ResourceDictionary x:Name="dictionary">
  8. <Color x:Key="Primary">#126db5</Color>
  9. <Style TargetType="Button">
  10. <Setter Property="BackgroundColor" Value="{StaticResource Primary}" />
  11. <Setter Property="CornerRadius">
  12. <OnPlatform x:TypeArguments="x:Int32">
  13. <On Platform="Android">30</On>
  14. <On Platform="iOS">24</On>
  15. </OnPlatform>
  16. </Setter>
  17. </Style>
  18. </ResourceDictionary>
  19. </Application.Resources>
  20. </Application>