Skip to content

Instantly share code, notes, and snippets.

@ricardoprestes
Created February 5, 2020 14:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ricardoprestes/e1538d640399e8f4e5832ed8c2226124 to your computer and use it in GitHub Desktop.
Save ricardoprestes/e1538d640399e8f4e5832ed8c2226124 to your computer and use it in GitHub Desktop.
<prism:PrismApplication
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:d="http://xamarin.com/schemas/2014/forms/design"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:prism="clr-namespace:Prism.DryIoc;assembly=Prism.DryIoc.Forms"
mc:Ignorable="d"
x:Class="MyDimDim.App">
<Application.Resources>
<Color x:Key="ColorPrimary">#214f22</Color>
<Color x:Key="ColorPrimaryDark">#163617</Color>
<Color x:Key="ColorAccent">#214f22</Color>
<Color x:Key="ColorRevenue">#18780a</Color>
<Color x:Key="ColorExpense">#c41212</Color>
<Color x:Key="ColorTransfer">#146ae3</Color>
<Style TargetType="NavigationPage">
<Setter Property="BarBackgroundColor" Value="{StaticResource ColorPrimary}" />
<Setter Property="BarTextColor" Value="White" />
</Style>
</Application.Resources>
</prism:PrismApplication>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment