我似乎不知道如何通过使用NativeBase在vue-native上下拉列表来刷新列表。我知道有可能在react-native上使用,但是我找不到有关如何使其与vue-native一起使用的任何信息。有谁知道该怎么做?
答案 0 :(得分:0)
您可以像这样使用它:
导入<scripts>
:
import { RefreshControl } from 'react-native';
在方法中添加了刷新某些列表的功能:
_onRefresh(){
this.refreshing = true
this.getPictures()
this.refreshing = false
},
在数据中:
data() {
return {
refreshing: false
}
},
在您<template>
上方<nb-list>
的NativeBase中添加:
<RefreshControl
:refreshing="refreshing"
:onRefresh="_onRefresh"
/>