Skip to content
Permalink
Browse files
Create App.xaml
  • Loading branch information
miahs26 committed Dec 13, 2020
1 parent 3560811 commit c16dcb1a80074d5ff826b6c44499b747cb718eeb
Showing 1 changed file with 20 additions and 0 deletions.
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8" ?>
<Application 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"
mc:Ignorable="d"
x:Class="NoteKeeper.App">

<Application.Resources>
<ResourceDictionary>
<!--Global Styles-->
<Color x:Key="NavigationPrimary">#2196F3</Color>
<Style TargetType="NavigationPage">
<Setter Property="BarBackgroundColor" Value="{StaticResource NavigationPrimary}" />
<Setter Property="BarTextColor" Value="White" />
</Style>
</ResourceDictionary>
</Application.Resources>

</Application>

0 comments on commit c16dcb1

Please sign in to comment.