我似乎无法弄清楚如何通过使用 NativeBase 在 vue-native 上拉下列表来刷新列表。我知道在 react-native 上是可能的,但我找不到任何关于如何使它与 vue-native 一起工作的信息。有谁知道如何做到这一点?
问问题
385 次
1 回答
0
你可以像这样使用它:
导入<scripts>
:
import { RefreshControl } from 'react-native';
在方法中添加一个函数来刷新一些列表:
_onRefresh(){
this.refreshing = true
this.getPictures()
this.refreshing = false
},
在数据中:
data() {
return {
refreshing: false
}
},
在您的来自 NativeBase 的上方添加<template>
:<nb-list>
<RefreshControl
:refreshing="refreshing"
:onRefresh="_onRefresh"
/>
于 2019-08-08T11:32:21.710 回答