I have a ScrollView inside another ScrollView. I noticed that I have to tap twice in order to make the nested scroll view start scrolling.
I tried using some properties like scrollEnabled, nestedScrollEnabled and keyboardShouldPersistTaps="always" but none of these helped.
I can't provide any real code because the project is quite big and there are multiple components in between the scroll views. However, the basic structure is similar to this:
<ScrollView>
<SomeNestedComponents>
<ScrollView
scrollEnabled={true}
nestedScrollEnabled={true}
keyboardShouldPersistTaps="always"
>
</ScrollView>
</SomeNestedComponents>
</ScrollView>