I have an SFComboBox on a page with other controls. It is fine under Android. On iOS the text showing the current selection is cut off.


Here is the XAML...
<Style TargetType="combobox:SfComboBox">
<Setter Property="FontFamily" Value="OpenSans-Regular.ttf#Open Sans"/>
<!--Setter Property="BackgroundColor" Value="{StaticResource Controls}"/-->
</Style>
<Style TargetType="inputLayout:SfTextInputLayout">
<Setter Property="ContainerBackgroundColor" Value="{StaticResource Controls}"/>
<Setter Property="ContainerType" Value="Filled"/>
</Style>
<inputLayout:SfTextInputLayout Grid.Row="0" Grid.ColumnSpan="2" Hint="State">
<combobox:SfComboBox x:Name="State" AutomationId="State" HorizontalOptions="StartAndExpand" TextSize="Small" BackgroundColor="#00000000" DataSource="{Binding States}" SelectedItem="{Binding SelectedState}">
<combobox:SfComboBox.HeightRequest>
<OnPlatform
x:TypeArguments="x:Double"
Android="60"
WinPhone="60"
iOS="30" />
</combobox:SfComboBox.HeightRequest>
</combobox:SfComboBox>
</inputLayout:SfTextInputLayout>