You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 24, 2021. It is now read-only.
Hello! This plugin works perfect for all cases except for the one I'm going to describe.
I want to be able to fire the "refreshing" property programmatically whenever I want. For Android works perfect, but for iOS it doesn't work.
I'm using nativescript-vue and doing the following:
This is the view
<PullToRefreshref="pullToRefresh" @refresh="onRefresh"row="1"col="0"color="red"><ListViewfor="item in listOfItems" @itemTap="onTap"><v-template><Labeltext="item.text"/></v-template></ListView></PullToRefresh>
As you can see I'm getting the nativeView of pull to refresh and changing the refreshing property programatically. It works but on iOS the color I applied to the ActivityIndicator is lost. Now If I apply the same logic to a button that fires this last function then on iOS it doesn't work at all, the ListView won't scroll itself and it won't display the ActivityIndicator.
Hello! This plugin works perfect for all cases except for the one I'm going to describe.
I want to be able to fire the "refreshing" property programmatically whenever I want. For Android works perfect, but for iOS it doesn't work.
I'm using nativescript-vue and doing the following:
Pagetag that will fire once the page is loaded and the following function will handle the eventAs you can see I'm getting the nativeView of pull to refresh and changing the refreshing property programatically. It works but on iOS the color I applied to the
ActivityIndicatoris lost. Now If I apply the same logic to a button that fires this last function then on iOS it doesn't work at all, theListViewwon't scroll itself and it won't display theActivityIndicator.