When true, the scroll view bounces vertically when it reaches the end even if the content is smaller than the scroll view itself. The default value is false when horizontal={true} and true otherwise.
Now, the above props will enable bouncing even if the content is smaller than the container if set to true (default to false)
From PR #24
I implemented
alwaysBounceVertical
/alwaysBounceHorizontal
incorrectly on android. My first imple : Disable bounce if those props are set tofalse
.Correct imple according to the doc (https://facebook.github.io/react-native/docs/scrollview.html#alwaysbouncevertical) :
Now, the above props will enable bouncing even if the content is smaller than the container if set to true (default to false)