Hi all,
I have a list view in a content page. I have the pull to refresh set. All is working except when I have completed my refresh the activity indicator for a refresh does not stop
<ListView ItemsSource="{Binding SummaryReports.Result.ResultSet}" SeparatorVisibility="None" VerticalOptions="FillAndExpand" x:Name="itemsView" HasUnevenRows="True" IsPullToRefreshEnabled="True" RefreshCommand="{Binding RefreshListCommand}" IsRefreshing="{Binding IsBusy, Mode=OneWay}" SelectedItem="{Binding SelectedCustomer}" HorizontalOptions="Fill">
I make sure isBusy is set to false at the end of the refresh I Have another indicator on the page to check this and it ends just fine. what am I missing?