├── .gitattributes ├── .gitignore ├── README.md ├── index.d.ts ├── index.js ├── index.tsx ├── package.json ├── react-native-libraries.json ├── tsconfig.json └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interhub/react-native-accelerometer-parallax/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interhub/react-native-accelerometer-parallax/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interhub/react-native-accelerometer-parallax/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interhub/react-native-accelerometer-parallax/HEAD/index.js -------------------------------------------------------------------------------- /index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interhub/react-native-accelerometer-parallax/HEAD/index.tsx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interhub/react-native-accelerometer-parallax/HEAD/package.json -------------------------------------------------------------------------------- /react-native-libraries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interhub/react-native-accelerometer-parallax/HEAD/react-native-libraries.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interhub/react-native-accelerometer-parallax/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interhub/react-native-accelerometer-parallax/HEAD/yarn.lock --------------------------------------------------------------------------------