├── .DS_Store ├── .babelrc ├── .expo ├── README.md └── settings.json ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc ├── CONTRIBUTING.md ├── LICENSE ├── README-legacy.md ├── README.md ├── components ├── BaseToast.tsx ├── ErrorToast.tsx ├── InfoToast.tsx ├── SuccessToast.tsx ├── ToastManager.tsx ├── WarnToast.tsx └── styles.ts ├── config └── theme.ts ├── index.ts ├── package.json ├── sample ├── .gitignore ├── Another.js ├── App.js ├── app.json ├── assets │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ └── splash-icon.png ├── index.js ├── metro.config.js ├── package-lock.json ├── package.json └── tsconfig.json ├── tsconfig.json └── utils ├── defaultConfig.ts ├── defaultProps.ts ├── helpers.ts └── interfaces.ts /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/.DS_Store -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/.babelrc -------------------------------------------------------------------------------- /.expo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/.expo/README.md -------------------------------------------------------------------------------- /.expo/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/.expo/settings.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .expo 2 | 3 | /node_modules 4 | /build 5 | 6 | **/package-lock.json 7 | 8 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/.prettierrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/LICENSE -------------------------------------------------------------------------------- /README-legacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/README-legacy.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/README.md -------------------------------------------------------------------------------- /components/BaseToast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/components/BaseToast.tsx -------------------------------------------------------------------------------- /components/ErrorToast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/components/ErrorToast.tsx -------------------------------------------------------------------------------- /components/InfoToast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/components/InfoToast.tsx -------------------------------------------------------------------------------- /components/SuccessToast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/components/SuccessToast.tsx -------------------------------------------------------------------------------- /components/ToastManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/components/ToastManager.tsx -------------------------------------------------------------------------------- /components/WarnToast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/components/WarnToast.tsx -------------------------------------------------------------------------------- /components/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/components/styles.ts -------------------------------------------------------------------------------- /config/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/config/theme.ts -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/package.json -------------------------------------------------------------------------------- /sample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/sample/.gitignore -------------------------------------------------------------------------------- /sample/Another.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/sample/Another.js -------------------------------------------------------------------------------- /sample/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/sample/App.js -------------------------------------------------------------------------------- /sample/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/sample/app.json -------------------------------------------------------------------------------- /sample/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/sample/assets/adaptive-icon.png -------------------------------------------------------------------------------- /sample/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/sample/assets/favicon.png -------------------------------------------------------------------------------- /sample/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/sample/assets/icon.png -------------------------------------------------------------------------------- /sample/assets/splash-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/sample/assets/splash-icon.png -------------------------------------------------------------------------------- /sample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/sample/index.js -------------------------------------------------------------------------------- /sample/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/sample/metro.config.js -------------------------------------------------------------------------------- /sample/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/sample/package-lock.json -------------------------------------------------------------------------------- /sample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/sample/package.json -------------------------------------------------------------------------------- /sample/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/sample/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/defaultConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/utils/defaultConfig.ts -------------------------------------------------------------------------------- /utils/defaultProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/utils/defaultProps.ts -------------------------------------------------------------------------------- /utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/utils/helpers.ts -------------------------------------------------------------------------------- /utils/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidalidev/toastify-react-native/HEAD/utils/interfaces.ts --------------------------------------------------------------------------------