Hi,
I'm trying to bind the IsOpen property to my view model but its not working.
<xForms:SfPicker x:Name="picker"
ItemsSource="{Binding Items}"
SelectedItem="{Binding SelectedItem, Mode=TwoWay}"
PickerMode="Dialog"
IsOpen="{Binding ShowPicker}"
/>
Now in my view model when i update the ShowPicker boolean to true, the dialog picker doesnt show.
Any help?