Skip to content

Commit

Permalink
Update AllNotesPage.xaml use theme colour for plus icon (#1991)
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.

Co-authored-by: David Britch <davidbritch@users.noreply.github.com>
  • Loading branch information
danellisuk and davidbritch authored Jan 12, 2024
1 parent b538c9e commit 19867e1
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 19867e1

Please sign in to comment.