有我的代码。scrollview嵌套了两个flashList,
如果我不限制flashlist高度,它会第一时间渲染所有项目。
如果我使用视图元素来包裹它们,当第一个列表滚动到底部时滚动将停止。
github代码:https://github.com/vanBlayt/rn-flashlist-demo,我已经推送了代码。
<ScrollView
style={{ flex: 1 }}
scrollEnabled={outerScrollEnable}
nestedScrollEnabled
ref={scrollViewRef}
>
<View style={{ height: height, backgroundColor: "#333" }}>
<FlashList
data={list}
keyExtractor={keyExtractor}
renderItem={renderItem}
estimatedItemSize={68}
// style={{ flex: 1 }}
scrollEnabled={goodsScrollEnable}
nestedScrollEnabled
onEndReached={handleGoodsEndReached}
renderScrollComponent={renderScrollComponent}
/>
</View>
<View style={{ height, backgroundColor: "#fff" }}>
<FlashList
data={list2}
keyExtractor={keyExtractor}
renderItem={renderItem}
estimatedItemSize={68}
// style={{ flex: 1 }}
scrollEnabled={recommendScrollEnable}
nestedScrollEnabled
renderScrollComponent={renderScrollComponent}
/>
</View>
</ScrollView>
滚动内的 FlashList 使嵌套滚动,如果您需要实现两个方向相同的 FlashList 您应该尝试它使无界布局案例在 onLoad 时渲染所有列表项,您应该尝试
按照上述示例中的任何一个,如果您遇到任何问题发表评论,我会帮助您解决。