Nathan Wesley
Nathan Wesley

Reputation: 59

How do I disable stretch effect on React Native Scrollview/Flatlist?

This is the effect I am describing. I am emulating using a Pixel 3 with API 32 on android studio. This page is a scrollview with no styling, and a bunch of views with color stylings and height and width set.

enter image description here

Upvotes: 2

Views: 4258

Answers (1)

kiuQ
kiuQ

Reputation: 1196

This is an effect added by Google in Android 12, this is called "overScroll".

You can turn it off in react-native by using <ScrollView overScrollMode="never">.

See React Native ScrollView doc here.

Upvotes: 8

Related Questions