react native FlatList高性能列表 自定义
2018-11-07 本文已影响0人
俗人彭jin
自定义 loading
onRefresh={() => {
console.log('下拉加载触发的函数...')
}}
这种只能出现1个菊花,不能自定义loading
用下面的替代即可,就能完成react-native自定义菊花的操作了
refreshControl={
<RefreshControl
refreshing={true} // 加载loading显示
onRefresh={() => {
console.log('下拉加载触发的函数...')
}}
title='loading...'
colors={['red']}
titleColor='red'
tintColor='red'
/>
}