Trying to fix an issue I'm seeing on both Android & iOS in dark mode where the border of my radio button is not showing up. Once the button is pressed, the filled circle shows up for the checked selection, but I need both unchecked radio button circles to be there so the user knows the buttons are there. Anyone know how to get radio button formatting to work correctly in dark mode?
Here's the xaml for the buttons:
<RadioButton x:Name="MyRadio0No" Grid.Row="0" Grid.Column="1" Content="No" BackgroundColor="White" BorderColor="{StaticResource AppMainColor}" FontSize="Body" TextColor="{StaticResource AppMainColor}" IsChecked="false" CheckedChanged="OnRadioButton0CheckedChanged" />
<RadioButton x:Name="MyRadio0Yes" Grid.Row="0" Grid.Column="2" Content="Yes" BackgroundColor="White" BorderColor="{StaticResource AppMainColor}" FontSize="Body" TextColor="{StaticResource AppMainColor}" IsChecked="false" HorizontalOptions="EndAndExpand" CheckedChanged="OnRadioButton0CheckedChanged"/>
Result in light mode:
Result in dark mode:
I've also tried setting the border color in Styles.xaml as well as specifying it for dark mode, but this didn't change anything:
<Style TargetType="RadioButton">
<Setter Property="BorderColor" Value="{AppThemeBinding Light={StaticResource AppMainColor}, Dark={StaticResource AppMainColor}}" />
...
</Style>

