├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ ├── publish.yml │ └── version.yml ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── src ├── Box │ ├── __tests__ │ │ └── index.test.tsx │ └── index.tsx ├── Context │ ├── index.tsx │ └── styles.tsx ├── Icon │ └── index.tsx ├── Toast │ ├── index.tsx │ └── styles.tsx ├── Utils │ └── index.ts └── index.ts ├── tsconfig.json ├── yarn-error.log └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | /node_modules/* 2 | /src/aws-exports.js 3 | dist -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanverster/react-native-styled-toast/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanverster/react-native-styled-toast/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanverster/react-native-styled-toast/HEAD/.github/workflows/version.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanverster/react-native-styled-toast/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanverster/react-native-styled-toast/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | dist 4 | .build -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanverster/react-native-styled-toast/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanverster/react-native-styled-toast/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanverster/react-native-styled-toast/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanverster/react-native-styled-toast/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanverster/react-native-styled-toast/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanverster/react-native-styled-toast/HEAD/package.json -------------------------------------------------------------------------------- /src/Box/__tests__/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanverster/react-native-styled-toast/HEAD/src/Box/__tests__/index.test.tsx -------------------------------------------------------------------------------- /src/Box/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanverster/react-native-styled-toast/HEAD/src/Box/index.tsx -------------------------------------------------------------------------------- /src/Context/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanverster/react-native-styled-toast/HEAD/src/Context/index.tsx -------------------------------------------------------------------------------- /src/Context/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanverster/react-native-styled-toast/HEAD/src/Context/styles.tsx -------------------------------------------------------------------------------- /src/Icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanverster/react-native-styled-toast/HEAD/src/Icon/index.tsx -------------------------------------------------------------------------------- /src/Toast/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanverster/react-native-styled-toast/HEAD/src/Toast/index.tsx -------------------------------------------------------------------------------- /src/Toast/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanverster/react-native-styled-toast/HEAD/src/Toast/styles.tsx -------------------------------------------------------------------------------- /src/Utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanverster/react-native-styled-toast/HEAD/src/Utils/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanverster/react-native-styled-toast/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanverster/react-native-styled-toast/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanverster/react-native-styled-toast/HEAD/yarn-error.log -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanverster/react-native-styled-toast/HEAD/yarn.lock --------------------------------------------------------------------------------