├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src ├── components │ └── index.js ├── index.js ├── utils │ └── index.js └── views │ ├── DefaultPopup.js │ └── index.js ├── types.d.ts └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carsonwah/react-native-push-notification-popup/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carsonwah/react-native-push-notification-popup/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carsonwah/react-native-push-notification-popup/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carsonwah/react-native-push-notification-popup/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carsonwah/react-native-push-notification-popup/HEAD/package.json -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carsonwah/react-native-push-notification-popup/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carsonwah/react-native-push-notification-popup/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/views/DefaultPopup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carsonwah/react-native-push-notification-popup/HEAD/src/views/DefaultPopup.js -------------------------------------------------------------------------------- /src/views/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carsonwah/react-native-push-notification-popup/HEAD/src/views/index.js -------------------------------------------------------------------------------- /types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carsonwah/react-native-push-notification-popup/HEAD/types.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carsonwah/react-native-push-notification-popup/HEAD/yarn.lock --------------------------------------------------------------------------------