dotnet / dotnet/maui

Disabled CheckBox on iOS always Tints Grey

Open
#6,839 4 comments 1 reaction 1 assignee Assigned to @Copilot View on GitHub
area-controls-checkbox platform/ios s/triaged t/bug
Dominant language
C#
Stars
23.3k
Forks
2k
Avg merge
1d 15h
Merged PRs (30d)
290

Description

If you run the following code the disabled checkbox will be grey.
```C#
MainPage = new ContentPage
{
Content = new StackLayout()
{
Children =
{
new CheckBox() { Color = Colors.Purple },
new CheckBox() { Color = Colors.Purple, IsEnabled = false },
}
}
};
```

Technically we should just replace the entire `Checkbox` implementation with `RadioButton` so might just be best to do that instead of trying to figure this out

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.