Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Commit

Permalink
fix badge background color (#1080)
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew S committed Mar 15, 2021
1 parent f7e6700 commit 4c12729
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,9 @@ public bool IsAnimated
/// Backing BindableProperty for the <see cref="BackgroundColor"/> property.
/// </summary>
public static new BindableProperty BackgroundColorProperty =
BindableProperty.Create(nameof(BackgroundColor), typeof(Color), typeof(BadgeView), defaultValue: Color.Default);

BindableProperty.Create(nameof(BackgroundColor), typeof(Color), typeof(BadgeView), defaultValue: Color.Default,
propertyChanged: OnLayoutPropertyChanged);

/// <summary>
/// Gets or sets the background <see cref="Color"/> of the badge. This is a bindable property.
/// </summary>
Expand Down

0 comments on commit 4c12729

Please sign in to comment.