I'd like to center an SfPicker control of the custom footer of an dialog mode SfPicker, but with the following XAML it's stll left-aligned. I've tried using different containers with no luck
<sfPicker:SfPicker
x:Name="MyPicker"
HeaderText="Picker with stars"
ShowHeader="True"
ShowFooter="True"
PickerMode="Dialog"
PickerWidth="250"
ItemsSource="{Binding Items}"
SelectedItem="{Binding SelectedItem}">
<sfPicker:SfPicker.FooterView>
<sfRating:SfRating
x:Name="MyRating"
Value="{Binding SelectedRating}"
ItemCount="5"
ItemSize="30"
HorizontalOptions="Center"/>
sfPicker:SfPicker.FooterView>
sfPicker:SfPicker> >