自定义 loading
onRefresh={() => {
console.log('下拉加载触发的函数...')
}}
这种只能出现1个菊花,不能自定义loading
用下面的替代即可,就能完成react-native自定义菊花的操作了
refreshControl={
<RefreshControl
refreshing={true} // 加载loading显示
onRefresh={() => {
console.log('下拉加载触发的函数...')
}}
title='loading...'
colors={['red']}
titleColor='red'
tintColor='red'
/>
}
网友评论