Skip to content

Commit

Permalink
Update MauiPicker.cs (#9735)
Browse files Browse the repository at this point in the history
  • Loading branch information
rookiejava authored Aug 29, 2022
1 parent 36ba0da commit 1db1236
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Core/src/Platform/Tizen/MauiPicker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public MauiPicker()
{
_underline = new NView
{
Color = _defaultUnderlineColor,
BackgroundColor = _defaultUnderlineColor,
SizeHeight = 1d.ToScaledPixel(),
WidthResizePolicy = ResizePolicyType.FillToParent,
ParentOrigin = Position.ParentOriginBottomLeft
Expand All @@ -31,7 +31,7 @@ public MauiPicker()
protected override void OnEnabled(bool enabled)
{
base.OnEnabled(enabled);
_underline.Color = enabled ? _defaultUnderlineColor : NColor.LightGray;
_underline.BackgroundColor = enabled ? _defaultUnderlineColor : NColor.LightGray;
}
}
}
}

0 comments on commit 1db1236

Please sign in to comment.