Skip to content

Commit

Permalink
Update AllNotesPage.xaml use theme colour for plus icon
Browse files Browse the repository at this point in the history
The plus symbol for adding a note was white which was not visible when using a light theme on Android.  This change uses the Primary theme colour which is visible on both light and dark mode.
  • Loading branch information
danellisuk authored Dec 28, 2023
1 parent 8d3cbd6 commit 8a3e19f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<!-- Add an item to the toolbar -->
<ContentPage.ToolbarItems>
<ToolbarItem Text="Add" Command="{Binding NewCommand}" IconImageSource="{FontImage Glyph='&#x002B;', Color=White, Size=22}" />
<ToolbarItem Text="Add" Command="{Binding NewCommand}" IconImageSource="{FontImage Glyph='&#x002B;', Color={StaticResource Primary}, Size=22}" />
</ContentPage.ToolbarItems>

<!-- Display notes in a list -->
Expand Down

0 comments on commit 8a3e19f

Please sign in to comment.