Good afternoon,
i'm trying to horizontally center a SfComboBox without success, seems that HorizontalOptions="Center" is not working.
If i try using a standard Xamarin.Forms Picker works fine, this is my code:
<ScrollView>
<StackLayout Padding="16">
<sfComboBox:SfComboBox HorizontalOptions="Center"/>
</StackLayout>
</ScrollView>
Using a standard Picker works fine:
<ScrollView>
<StackLayout Padding="16">
<Picker HorizontalOptions="Center"/>
</StackLayout>
</ScrollView>
Always uses all the available space; i have the same problem also inside a TextInputLayout.
Thanks in advance