Is there a way to prevent pull-to-refresh functionality for Content component?I want to be able scroll, but I don't wanna pulling down content of component and prevent situations like this:
you can use alwaysBounceVertical={false} prop of <Content/>. Content is a wrapper over ScrollView. You can use all the props of ScrollView with Content.
alwaysBounceVertical={false}
<Content/>