Skip to content

Commit

Permalink
SIDEMENU:: fixing color on darkmode theme
Browse files Browse the repository at this point in the history
  • Loading branch information
bachtiarpanjaitan committed Oct 4, 2024
1 parent 7c0c220 commit 3646139
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Bepe/Controllers/PageController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public void DefineLayoutTwoColumn()
{
menu.Value.BackgroundColor = Colors.Transparent;
menu.Value.FontSize = 14;
menu.Value.TextColor = Colors.Black;
menu.Value.TextColor = Colors.DimGray;
menu.Value.HorizontalOptions = LayoutOptions.Fill;
menu.Value.Clicked += (sender, args) =>
{
Expand All @@ -34,7 +34,7 @@ public void DefineLayoutTwoColumn()
if (item.Key != btn.CommandParameter.ToString())
{
item.Value.IsEnabled = true;
item.Value.TextColor = Colors.Black;
item.Value.TextColor = Colors.DimGray;
item.Value.BorderWidth = 0;
}
else
Expand Down

0 comments on commit 3646139

Please sign in to comment.