Ran into this issue today and found that it was caused by importing the wrong scroll view.
Import like this: import { ScrollView } from 'react-native-gesture-handler';
import { ScrollView } from 'react-native-gesture-handler';
DON'T IMPORT like this: import { ScrollView } from 'react-native';
import { ScrollView } from 'react-native';