App.xaml 829 B

123456789101112131415161718192021222324
  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="comal.timesheets.App">
  6. <Application.Resources>
  7. <resources:MaterialColorConfiguration x:Key="Material.Color"
  8. Background="#EAEAEA"
  9. Primary="#873260"
  10. PrimaryVariant="#a2006d"
  11. />
  12. <resources:MaterialConfiguration
  13. x:Key="Material.Configuration"
  14. ColorConfiguration="{StaticResource Material.Color}"
  15. />
  16. <Style TargetType="Button">
  17. <Setter Property="TextTransform" Value="None"/>
  18. </Style>
  19. </Application.Resources>
  20. </Application>