Disabled CheckBox on iOS always Tints Grey
Open
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
Assessment
This issue has not been assessed yet.