├── .eslintignore ├── .eslintrc ├── .github └── workflows │ ├── publish.yml │ └── tests.yml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg └── pre-commit ├── .importsortrc ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .releaserc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── babel.config.js ├── commitlint.config.js ├── demo.gif ├── example ├── .gitignore ├── App.tsx ├── app.json ├── assets │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── metro.config.js ├── package.json ├── tsconfig.json └── yarn.lock ├── jest.setup-after-env.js ├── lint-staged.config.js ├── package.json ├── src ├── HudProvider.test.tsx ├── HudProvider.tsx ├── __snapshots__ │ └── HudProvider.test.tsx.snap └── index.ts ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | CHANGELOG.md 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.importsortrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/.importsortrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18.15 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | CHANGELOG.md 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/.prettierrc -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/.releaserc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/babel.config.js -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ['@commitlint/config-conventional'] }; 2 | -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/demo.gif -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/example/App.tsx -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/example/app.json -------------------------------------------------------------------------------- /example/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/example/assets/adaptive-icon.png -------------------------------------------------------------------------------- /example/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/example/assets/favicon.png -------------------------------------------------------------------------------- /example/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/example/assets/icon.png -------------------------------------------------------------------------------- /example/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/example/assets/splash.png -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/example/package.json -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /jest.setup-after-env.js: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-native/extend-expect'; 2 | -------------------------------------------------------------------------------- /lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/lint-staged.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/package.json -------------------------------------------------------------------------------- /src/HudProvider.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/src/HudProvider.test.tsx -------------------------------------------------------------------------------- /src/HudProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/src/HudProvider.tsx -------------------------------------------------------------------------------- /src/__snapshots__/HudProvider.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/src/__snapshots__/HudProvider.test.tsx.snap -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedhammoud/react-native-hud-view/HEAD/yarn.lock --------------------------------------------------------------------------------