Hello,
I'm using SfNumericTextBox in Xamarin Forms and it looks like it does not set Black value to TextColor.
My input layout looks like this:
<inputLayout:SfTextInputLayout
Hint="{Binding AmountHint}"
HelperText="{Binding AmountHelperText}"
ErrorColor="Red"
HasError="{Binding Path=AmountHasError, Mode=TwoWay}"
ErrorText="{Binding Path=AmountErrorMessage, Mode=TwoWay}">
<numericBox:SfNumericTextBox
TextColor="Black"
Value="{Binding AmountValue, Mode=TwoWay}" />
</inputLayout:SfTextInputLayout>
When iOS runs in Dark mode - control will ignore TextColor="Black". At the same time if I set any other color - it work as expected.
I use 18.3.0.47 version.
I tried to use both direct setting of TextColor as above and DynamicResource as well - it works well unless I try to set it to black.