Hi.
I am using the SfPicker control. I use the same color data that you have for example.
If I enable it as "Default" mode, the control works perfect.
If I want to use it as "Dialog" mode, it does not show me items, footer or anything.
Only a white box with shadow.
I'm testing it on an Android phone.
Thanks in advance.
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:syncfusion="clr-namespace:Syncfusion.SfPicker.XForms;assembly=Syncfusion.SfPicker.XForms"
x:Class="Gesuro.Views.CarQuotePage"
BindingContext="{Binding Main, Source={StaticResource Locator}}"
Title="Iniciar Sesión">
<ContentPage.Content>
<ScrollView
BindingContext="{Binding CarQuote}">
<StackLayout>
<syncfusion:SfPicker
x:Name="picker"
HorizontalOptions="Center"
IsOpen="True"
IsVisible="True"
IsEnabled="True"
ItemsSource="{Binding Colors}"
PickerHeight="300"
PickerMode="Dialog"
PickerWidth="200"
SelectionBackgroundColor="Blue"
ShowHeader="True"
ShowFooter="True"
UnSelectedItemTextColor="Black"
VerticalOptions="Center">
</syncfusion:SfPicker>
</StackLayout>
</ScrollView>
</ContentPage.Content>
</ContentPage>