React Native:如何在 ListView 中禁用滚动?
React Native: How to disable scrolling in ListView?
是否可以禁用 ListView 的滚动?我试过了 noScroll
:
<ListView noScroll={true}>
</ListView>
不过好像也没什么区别。
我觉得应该是
scrollEnabled={false}
http://facebook.github.io/react-native/docs/scrollview.html#props
有时只有同时应用 scrollEnabled
和 nestedScrollEnabled
才能禁用滚动:
<ScrollView
scrollEnabled={false}
nestedScrollEnabled={false}
>
{children}
</ScrollView>
是否可以禁用 ListView 的滚动?我试过了 noScroll
:
<ListView noScroll={true}>
</ListView>
不过好像也没什么区别。
我觉得应该是
scrollEnabled={false}
http://facebook.github.io/react-native/docs/scrollview.html#props
有时只有同时应用 scrollEnabled
和 nestedScrollEnabled
才能禁用滚动:
<ScrollView
scrollEnabled={false}
nestedScrollEnabled={false}
>
{children}
</ScrollView>