dotnet / maui

.NET MAUI is the .NET Multi-platform App UI, a framework for building native device applications spanning mobile, tablet, and desktop.
https://dot.net/maui
MIT License
22.27k stars 1.76k forks source link

Disabled CheckBox on iOS always Tints Grey #6839

Open PureWeen opened 2 years ago

PureWeen commented 2 years ago

If you run the following code the disabled checkbox will be grey.

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

jsuarezruiz commented 2 years ago

Additional Information, not happens on Catalyst.

Captura de Pantalla 2022-05-31 a las 10 04 52
ghost commented 1 year ago

We've added this issue to our backlog, and we will work to address it as time and resources allow. If you have any additional information or questions about this issue, please leave a comment. For additional info about issue management, please read our Triage Process.