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