SfPicker iOS Text

Hi,
After update to new NuGets (18.1.0.56) I have a problem with text at SfPicker (before that everything was OK). On iOS Platform text is not showing. Testing at simulators and real devices. I Attach pictures compare Android and iOS with the same code.


XAML:
<syncfusion:SfPicker x:Name="pickerConfigurations" AbsoluteLayout.LayoutFlags="All" AbsoluteLayout.LayoutBounds="0,0,1,1" PickerMode="Dialog" IsOpen="False" ShowFooter="True" SelectedItemTextColor="Blue" UnSelectedItemTextColor="Gray" SelectionBackgroundColor="LightBlue" HeaderText="Configuration" HeaderTextColor="Black"  HeaderBackgroundColor="White" BackgroundColor="White" CancelButtonBackgroundColor="Transparent" OKButtonBackgroundColor="Transparent" HeightRequest="350" WidthRequest="300" PickerHeight="250" PickerWidth="280" />
            
C#:
public void OnButtonConnectionConfig_Click(object sender, EventArgs args)
{
   ConnectionConfig();
}

private void ConnectionConfig()
{
            pickerConfigurations.ItemsSource = itemListConfig;

            SfButton buttonOk = new SfButton
            {
                Text = "Potvrdit",
                HorizontalTextAlignment = TextAlignment.Center,
                TextColor = Color.Black,
                BackgroundColor = Color.Transparent,
            };
            buttonOk.Clicked += buttonConfirm_Click;

            SfButton buttonConfiguration = new SfButton
            {
                Text = "Konfigurovat",
                HorizontalTextAlignment = TextAlignment.Center,
                TextColor = lblText,
                BackgroundColor = Color.Transparent,
            };
            buttonConfiguration.Clicked += buttonConfiguration_Click;

            Grid layout = new Grid();
            layout.Children.Add(buttonConfiguration, 0, 0);
            layout.Children.Add(buttonOk, 1, 0);

            pickerConfigurations.FooterView = layout;
            pickerConfigurations.SelectedIndex = 1;
            pickerConfigurations.IsOpen = true;
}

Attachment: ConfigurationSfPicker_8bc4610f.zip

1 Reply 1 reply marked as answer

SP Sakthivel Palaniyappan Syncfusion Team June 16, 2020 11:08 AM UTC

Hi Tomas,

We have fixed the reported issue in iOS platform and the fix for the reported issue was included in the latest weekly NuGet  18.1.0.57.Can you please check the issue with the latest version and let us know the reported issue resolved or not.

Regards,
Sakthivel P.


Marked as answer
Loader.
Up arrow icon