我有这样的烦恼:
图片越多,干扰就越多,持续的时间也越长
flashlist是否有显示此类情况下加载指示符的方法?如果没有,如何修复?当我使用简单的平面列表时,我没有任何问题与以下P.s:我找到了onLoad事件,但它不工作:
<FlashList
numColumns={2}
onEndReached={async() => {
getData()
}}
data={DATA}
renderItem={renderItem}
estimatedItemSize={200}
onLoad={()=>{
setIsLoading(false)
}}
/>
1条答案
按热度按时间xxslljrj1#
您可以使用react-native-fast-image库快速加载图像,并在renderItem组件中显示列表中的每个图像的指示符。