├── .circleci └── config.yml ├── .eslintrc ├── .flowconfig ├── .github ├── PULL_REQUEST_TEMPLATE.md └── demo.gif ├── .gitignore ├── .nvmrc ├── LICENSE ├── README.md ├── babel.config.js ├── example ├── .expo-shared │ └── assets.json ├── .gitignore ├── .nvmrc ├── App.js ├── app.json ├── assets │ ├── icon.png │ └── splash.png ├── babel.config.js ├── package-lock.json ├── package.json └── storybook │ ├── index.js │ ├── rn-addons.js │ └── stories │ ├── components │ └── screen-simulator.js │ └── index.js ├── flow-typed └── npm │ └── jest_v24.x.x.js ├── jest.config.js ├── jestSetup.js ├── package.json ├── src ├── __tests__ │ └── index.js ├── components │ └── confetti.js ├── index.d.ts ├── index.js └── utils.js └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/.flowconfig -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/.github/demo.gif -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/babel.config.js -------------------------------------------------------------------------------- /example/.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/example/.expo-shared/assets.json -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.nvmrc: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /example/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/example/App.js -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/example/app.json -------------------------------------------------------------------------------- /example/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/example/assets/icon.png -------------------------------------------------------------------------------- /example/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/example/assets/splash.png -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/example/package-lock.json -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/example/package.json -------------------------------------------------------------------------------- /example/storybook/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/example/storybook/index.js -------------------------------------------------------------------------------- /example/storybook/rn-addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/example/storybook/rn-addons.js -------------------------------------------------------------------------------- /example/storybook/stories/components/screen-simulator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/example/storybook/stories/components/screen-simulator.js -------------------------------------------------------------------------------- /example/storybook/stories/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/example/storybook/stories/index.js -------------------------------------------------------------------------------- /flow-typed/npm/jest_v24.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/flow-typed/npm/jest_v24.x.x.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/jest.config.js -------------------------------------------------------------------------------- /jestSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/jestSetup.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/src/__tests__/index.js -------------------------------------------------------------------------------- /src/components/confetti.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/src/components/confetti.js -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/src/utils.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentCATILLON/react-native-confetti-cannon/HEAD/yarn.lock --------------------------------------------------------------------------------