如何使 Flatlist 在 React Native 中不可滚动

How can I make a Flatlist not scrollable in ReactNative

我想知道是否可以让平面列表暂时不可滚动。例如:有一个布尔常量,只要为真,就可以滚动平面列表,但是只要为假,我怎样才能让它不能滚动?

FlatList根据docs, so it should have scrollEnabled prop ScrollView props
继承了ScrollView的props 并尝试将其设置为:

scrollEnabled={ false }

在你的 FlatList 道具中。