Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace Maui.Controls.Sample.Issues;

[Issue(IssueTracker.Github, 8305, "ToolbarItem Badge Support", PlatformAffected.All)]
[Issue(IssueTracker.Github, 8305, "ToolbarItem Badge Support", PlatformAffected.All, issueTestNumber: 1)]
public class Issue8305_Toolbar : ContentPage
{
readonly ToolbarItem _badgeTextItem;
Expand All @@ -19,7 +19,7 @@ public Issue8305_Toolbar()
_badgeTextItem = new ToolbarItem
{
Text = "Mail",
IconImageSource = "envelope.png",
IconImageSource = "bank.png",
BadgeText = "New",
AutomationId = "BadgeTextItem"
};
Expand All @@ -28,7 +28,7 @@ public Issue8305_Toolbar()
_badgeCountItem = new ToolbarItem
{
Text = "Alerts",
IconImageSource = "bell.png",
IconImageSource = "calculator.png",
BadgeText = "3",
AutomationId = "BadgeCountItem"
};
Expand All @@ -37,7 +37,7 @@ public Issue8305_Toolbar()
_badgeColorItem = new ToolbarItem
{
Text = "Cart",
IconImageSource = "cart.png",
IconImageSource = "shopping_cart.png",
BadgeText = "1",
BadgeColor = Colors.Green,
AutomationId = "BadgeColorItem"
Expand Down
Loading