React-native: Can't disable vertical scrolling with ScrollView?

Created on 26 Jul 2015  路  4Comments  路  Source: facebook/react-native

Is there a way to disable vertical scrolling with ScrollView? I only want it to scroll horizontally.

Locked

Most helpful comment

try to add automaticallyAdjustContentInsets={false}

All 4 comments

directionalLockEnabled doesn't work?

No, that only locks it after you start to drag in a particular direction.

try to add automaticallyAdjustContentInsets={false}

Setting automaticallyAdjustContentInsets={false} worked, thanks.

Was this page helpful?
0 / 5 - 0 ratings