├── .editorconfig ├── .gitattributes ├── .github ├── actions │ └── setup │ │ └── action.yml └── workflows │ └── ci.yml ├── .gitignore ├── .nvmrc ├── .watchmanconfig ├── .yarnrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel.config.js ├── example ├── App.js ├── app.json ├── assets │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── babel.config.js ├── metro.config.js ├── package.json ├── src │ └── App.tsx ├── tsconfig.json ├── webpack.config.js └── yarn.lock ├── lefthook.yml ├── package.json ├── scripts └── bootstrap.js ├── src ├── __tests__ │ └── index.test.tsx ├── components │ ├── AnimatableView.tsx │ ├── Toastable.tsx │ ├── ToastableBody.tsx │ ├── ToastableCore.tsx │ ├── ToastableWrapper.tsx │ └── index.ts ├── constants │ ├── animation.ts │ ├── index.ts │ └── theme.ts ├── hooks │ ├── index.ts │ └── useConstructor.ts ├── index.tsx ├── types │ ├── animation.ts │ ├── common.ts │ └── index.ts └── utils │ ├── controller.ts │ └── index.ts ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 16.18.1 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/.yarnrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/babel.config.js -------------------------------------------------------------------------------- /example/App.js: -------------------------------------------------------------------------------- 1 | export { default } from './src/App'; 2 | -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/example/app.json -------------------------------------------------------------------------------- /example/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/example/assets/adaptive-icon.png -------------------------------------------------------------------------------- /example/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/example/assets/favicon.png -------------------------------------------------------------------------------- /example/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/example/assets/icon.png -------------------------------------------------------------------------------- /example/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/example/assets/splash.png -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/example/webpack.config.js -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/lefthook.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/package.json -------------------------------------------------------------------------------- /scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/scripts/bootstrap.js -------------------------------------------------------------------------------- /src/__tests__/index.test.tsx: -------------------------------------------------------------------------------- 1 | it.todo('write a test'); 2 | -------------------------------------------------------------------------------- /src/components/AnimatableView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/src/components/AnimatableView.tsx -------------------------------------------------------------------------------- /src/components/Toastable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/src/components/Toastable.tsx -------------------------------------------------------------------------------- /src/components/ToastableBody.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/src/components/ToastableBody.tsx -------------------------------------------------------------------------------- /src/components/ToastableCore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/src/components/ToastableCore.tsx -------------------------------------------------------------------------------- /src/components/ToastableWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/src/components/ToastableWrapper.tsx -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/constants/animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/src/constants/animation.ts -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/constants/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/src/constants/theme.ts -------------------------------------------------------------------------------- /src/hooks/index.ts: -------------------------------------------------------------------------------- 1 | export * from './useConstructor'; 2 | -------------------------------------------------------------------------------- /src/hooks/useConstructor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/src/hooks/useConstructor.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/types/animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/src/types/animation.ts -------------------------------------------------------------------------------- /src/types/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/src/types/common.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/utils/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/src/utils/controller.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './controller'; 2 | -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnheroes/react-native-toastable/HEAD/yarn.lock --------------------------------------------------------------------------------