$ npm install react-native-scrollview --save
$ react-native link react-native-scrollview
- Append the following lines to
android/settings.gradle
:include ':react-native-scrollview' project(':react-native-scrollview').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-scrollview/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-scrollview')
import ScrollView from 'react-native-scrollview';