React Native Android:如何删除ScrollView的“过度滚动效果”

前端之家收集整理的这篇文章主要介绍了React Native Android:如何删除ScrollView的“过度滚动效果”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在React Native Android添加了ScrollView组件,当您向下或向上向下滚动时,它会显示过滚动效果.你怎么删除这个?
添加此选项之前,我必须使用styles.xml为整个应用程序执行此操作:
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <!-- Customize your theme here. -->
    <item name="android:overScrollMode">never</item>
</style>
原文链接:https://www.f2er.com/react/300953.html

猜你在找的React相关文章