Search code examples
mauiswitchcontrol

Switch Style Issue in MAUI


I'm using a switch on my MAUI project. I found a style issue on Android devices 10 and 11, but on Android 12, there is no style issue.

Below is the screenshot on the Android 10 and Android 11.

enter image description here

Below is the screenshot on the Android 12.

enter image description here

Code:

 <Switch
    x:Name="sms_switch"
    ThumbColor="#5abcd7"
    OnColor="#5abcd7"
    Toggled="SMSToggledEvent"
    VerticalOptions="CenterAndExpand"
    HorizontalOptions="StartAndExpand"/>

Can you please help me to fix this issue?


Solution

  • I tried a lot of way to fix this UI issue but didn't get any solution. Finally I used switch on and off icons and resolved.

    This is not a solution but a way to fix the UI issue.