Is there a way to disable vertical scrolling with ScrollView? I only want it to scroll horizontally.
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.
Most helpful comment
try to add
automaticallyAdjustContentInsets={false}