This repository was archived by the owner on Jun 24, 2021. It is now read-only.

Description
Hi team
I make some tests with your plugin in my vue App
it's working on IOS when I use your readme syntax
but I'm working with vuex, and when page is loading, I use a conditionnal state to show another spin indicator
and this configuration seems to blocked your refresh system
<ActivityIndicator v-if="loading" busy="true" width="100" height="100"/> <StackLayout v-else> <ScrollView orientation="horizontal"> <PullToRefresh @refresh="refreshList"> <ListView for="p in listeFiltered" class="list-group" @itemTap="showItem"> <v-template> <Label row="0" col="1" :text="p.full_name" /> </GridLayout> </v-template> </ListView> </PullToRefresh> </ScrollView> </StackLayout>