Hi,
I am trying to set platform specific InputViewPadding in a style, but when I try it just doesn't work. It doesn't use the value. The reason I am doing this, is because on the Android version the sizing looks correct, but on IOS the input box is too big and overlaps stuff. Hence the need for different values based on platform.
Here is the example style in question:
<Style TargetType="input:SfTextInputLayout" x:Key="sfi_default">
<Setter Property="InputViewPadding">
<OnPlatform x:TypeArguments="x:Double">
<On Platform="iOS" Value="5" />
<On Platform="Android" Value="8" />
</OnPlatform>
</Setter>
</Style>