├── .babelrc ├── .eslintrc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── __tests__ ├── AlertPro.test.js └── __snapshots__ │ └── AlertPro.test.js.snap ├── index.d.ts ├── index.js ├── package.json └── src ├── index.js └── style.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nysamnang/react-native-alert-pro/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nysamnang/react-native-alert-pro/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nysamnang/react-native-alert-pro/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nysamnang/react-native-alert-pro/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nysamnang/react-native-alert-pro/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nysamnang/react-native-alert-pro/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/AlertPro.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nysamnang/react-native-alert-pro/HEAD/__tests__/AlertPro.test.js -------------------------------------------------------------------------------- /__tests__/__snapshots__/AlertPro.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nysamnang/react-native-alert-pro/HEAD/__tests__/__snapshots__/AlertPro.test.js.snap -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nysamnang/react-native-alert-pro/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nysamnang/react-native-alert-pro/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nysamnang/react-native-alert-pro/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nysamnang/react-native-alert-pro/HEAD/src/index.js -------------------------------------------------------------------------------- /src/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nysamnang/react-native-alert-pro/HEAD/src/style.js --------------------------------------------------------------------------------