Skip to content

Commit

Permalink
Update Issue26662.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
kubaflo committed Jan 7, 2025
1 parent 29607a7 commit fe7c67e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/Controls/tests/TestCases.HostApp/Issues/Issue26662.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
namespace Maui.Controls.Sample.Issues
#if ANDROID
namespace Maui.Controls.Sample.Issues
{
[Issue(IssueTracker.Github, 26662, "Unable to dynamically set unselected IconImageSource Color on Android", PlatformAffected.Android)]
public class Issue26662 : TabbedPage
Expand Down Expand Up @@ -39,7 +40,9 @@ public Issue26662Tab1(TabbedPage tabbedPage)
Size = 15,
};

tabbedPage.Children.Add(new Page()
tabbedPage.Children[1].IsEnabled = false;

tabbedPage.Children.Add(new ContentPage()
{
Title = "New Tab",
IconImageSource = new FontImageSource
Expand Down Expand Up @@ -131,3 +134,4 @@ public Issue26662Tab3()

}
}
#endif

0 comments on commit fe7c67e

Please sign in to comment.