├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── index.js ├── package.json ├── screenshot-android.png └── screenshot-ios.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekhurst/react-native-elevated-view/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekhurst/react-native-elevated-view/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekhurst/react-native-elevated-view/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekhurst/react-native-elevated-view/HEAD/package.json -------------------------------------------------------------------------------- /screenshot-android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekhurst/react-native-elevated-view/HEAD/screenshot-android.png -------------------------------------------------------------------------------- /screenshot-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekhurst/react-native-elevated-view/HEAD/screenshot-ios.png --------------------------------------------------------------------------------