├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md ├── PULL_REQUEST_TEMPLATE.md ├── actions │ └── setup │ │ └── action.yml └── workflows │ ├── ci.yml │ ├── expo-preview.yml │ ├── expo.yml │ ├── release.yml │ ├── triage.yml │ └── versions.yml ├── .gitignore ├── .nvmrc ├── .yarn └── releases │ └── yarn-4.9.2.cjs ├── .yarnrc.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets └── demo.gif ├── babel.config.js ├── eslint.config.mjs ├── example ├── README.md ├── app.json ├── babel.config.js ├── index.js ├── metro.config.js ├── package.json ├── src │ └── App.tsx └── tsconfig.json ├── lefthook.yml ├── package.json ├── src ├── ModalView.tsx ├── __tests__ │ └── index.test.tsx ├── createModalNavigator.tsx ├── index.tsx └── types.tsx ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/expo-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/.github/workflows/expo-preview.yml -------------------------------------------------------------------------------- /.github/workflows/expo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/.github/workflows/expo.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/triage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/.github/workflows/triage.yml -------------------------------------------------------------------------------- /.github/workflows/versions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/.github/workflows/versions.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22.18.0 2 | -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.9.2.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/.yarn/releases/yarn-4.9.2.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/README.md -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/assets/demo.gif -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/babel.config.js -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/example/README.md -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/example/index.js -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/lefthook.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/package.json -------------------------------------------------------------------------------- /src/ModalView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/src/ModalView.tsx -------------------------------------------------------------------------------- /src/__tests__/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/src/__tests__/index.test.tsx -------------------------------------------------------------------------------- /src/createModalNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/src/createModalNavigator.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/src/types.tsx -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/react-navigation-native-modal/HEAD/yarn.lock --------------------------------------------------------------------------------