I am attempting to get the SfPullToRefresh work in a SfListView through MVVM. I am using essentially the same behavior as Malcolm. Upon using the behavior, the property never gets set. Here is a snippet from my xaml that contains the binding:
<xForms:SfPullToRefresh.Behaviors>
<ui:SfPullToRefreshCommandBehavior RefreshCommand="{Binding RefreshCommand}" />
xForms:SfPullToRefresh.Behaviors>
How can I set this up to make the binding work correctly?
Edit: Fixed the issue using BehaviorPack library to call commands from events.