App.xaml 1.0 KB

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <Application xmlns="http://xamarin.com/schemas/2014/forms"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. xmlns:resources="clr-namespace:XF.Material.Forms.Resources;assembly=XF.Material"
  5. x:Class="PRS.Mobile.App">
  6. <Application.Resources>
  7. <resources:MaterialColorConfiguration
  8. x:Key="Material.Color"
  9. Background="#EAEAEA"
  10. Primary="#873260"
  11. PrimaryVariant="#a2006d"
  12. Secondary="#15C7C1"
  13. SecondaryVariant="#159791"
  14. Surface="LightGoldenrodYellow"
  15. OnSurface="Navy"
  16. />
  17. <resources:MaterialConfiguration
  18. x:Key="Material.Configuration"
  19. ColorConfiguration="{StaticResource Material.Color}"
  20. />
  21. <Style TargetType="ImageButton">
  22. <Setter Property="BackgroundColor" Value="Transparent"/>
  23. <Setter Property="Padding" Value="5" />
  24. </Style>
  25. </Application.Resources>
  26. </Application>