├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── funding.yml ├── pull_request_template.md └── workflows │ └── ci.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierrc ├── LICENSE ├── README.md ├── android ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src │ ├── main │ ├── AndroidManifest.xml │ ├── AndroidManifestNew.xml │ ├── java │ │ └── com │ │ │ └── multiplemodals │ │ │ ├── RNTModalShadowView.kt │ │ │ ├── RNTModalView.kt │ │ │ ├── RNTModalViewManager.kt │ │ │ ├── RNTModalViewPackage.kt │ │ │ ├── events │ │ │ └── PressBackEvent.kt │ │ │ ├── extensions │ │ │ └── WindowExtensions.kt │ │ │ └── library │ │ │ ├── ModalDialog.kt │ │ │ ├── ModalHostHelper.kt │ │ │ └── ModalView.kt │ ├── jni │ │ ├── CMakeLists.txt │ │ └── multiplemodals.h │ └── res │ │ ├── anim │ │ ├── rnt_fade_in.xml │ │ ├── rnt_fade_out.xml │ │ ├── rnt_slide_in.xml │ │ └── rnt_slide_out.xml │ │ └── values │ │ └── values.xml │ ├── newarch │ └── RNTModalViewManagerSpec.kt │ └── oldarch │ └── RNTModalViewManagerSpec.kt ├── assets └── preview.gif ├── common └── cpp │ └── react │ └── renderer │ └── components │ └── multiplemodals │ ├── RNTModalViewComponentDescriptor.cpp │ ├── RNTModalViewComponentDescriptor.h │ ├── RNTModalViewShadowNode.cpp │ ├── RNTModalViewShadowNode.h │ ├── RNTModalViewState.cpp │ ├── RNTModalViewState.h │ ├── RNTModalViewUtils.h │ ├── RNTModalViewUtils.mm │ └── platform │ ├── android │ ├── JReactModalHostView.h │ └── RNTModalViewUtils.cpp │ └── cxx │ └── RNTModalViewUtils.cpp ├── eslint.config.js ├── global.d.ts ├── ios ├── Fabric │ ├── RNTModalViewComponentView.h │ └── RNTModalViewComponentView.mm ├── Library │ ├── Animations │ │ ├── FadeIn │ │ │ ├── FadeInAnimation.h │ │ │ └── FadeInAnimation.m │ │ ├── FadeOut │ │ │ ├── FadeOutAnimation.h │ │ │ └── FadeOutAnimation.m │ │ ├── ModalAnimation.h │ │ ├── ModalAnimation.m │ │ ├── SlideIn │ │ │ ├── SlideInAnimation.h │ │ │ └── SlideInAnimation.m │ │ └── SlideOut │ │ │ ├── SlideOutAnimation.h │ │ │ └── SlideOutAnimation.m │ ├── RNTModalMountingHelper │ │ ├── RNTModalMountingHelper.h │ │ └── RNTModalMountingHelper.m │ ├── RNTModalViewController │ │ ├── RNTModalViewController.h │ │ └── RNTModalViewController.m │ └── RNTModalWindowHelper │ │ ├── RNTModalWindowHelper.h │ │ └── RNTModalWindowHelper.m ├── RNTModal-Bridging-Header.h ├── RNTModal.xcodeproj │ └── project.pbxproj ├── RNTModalShadowView.h ├── RNTModalShadowView.m ├── RNTModalVIew.h ├── RNTModalView.m └── RNTModalViewManager.m ├── package.json ├── react-native-multiple-modals.podspec ├── react-native.config.js ├── scripts └── nightly-to-latest.sh ├── src ├── LayoutInspectorProvider.tsx ├── ModalView.tsx ├── ModalView.web.tsx ├── ScrollContextResetter.tsx ├── hooks │ ├── useID.ts │ └── useModalRegistry.ts ├── index.ts ├── integrations │ └── GestureHandlerRootView.tsx ├── newarch │ ├── NativeRNTModalView.ts │ └── NativeRNTModalView.web.tsx └── types.ts └── tsconfig.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/funding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/.github/funding.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/AndroidManifestNew.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/android/src/main/AndroidManifestNew.xml -------------------------------------------------------------------------------- /android/src/main/java/com/multiplemodals/RNTModalShadowView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/android/src/main/java/com/multiplemodals/RNTModalShadowView.kt -------------------------------------------------------------------------------- /android/src/main/java/com/multiplemodals/RNTModalView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/android/src/main/java/com/multiplemodals/RNTModalView.kt -------------------------------------------------------------------------------- /android/src/main/java/com/multiplemodals/RNTModalViewManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/android/src/main/java/com/multiplemodals/RNTModalViewManager.kt -------------------------------------------------------------------------------- /android/src/main/java/com/multiplemodals/RNTModalViewPackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/android/src/main/java/com/multiplemodals/RNTModalViewPackage.kt -------------------------------------------------------------------------------- /android/src/main/java/com/multiplemodals/events/PressBackEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/android/src/main/java/com/multiplemodals/events/PressBackEvent.kt -------------------------------------------------------------------------------- /android/src/main/java/com/multiplemodals/extensions/WindowExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/android/src/main/java/com/multiplemodals/extensions/WindowExtensions.kt -------------------------------------------------------------------------------- /android/src/main/java/com/multiplemodals/library/ModalDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/android/src/main/java/com/multiplemodals/library/ModalDialog.kt -------------------------------------------------------------------------------- /android/src/main/java/com/multiplemodals/library/ModalHostHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/android/src/main/java/com/multiplemodals/library/ModalHostHelper.kt -------------------------------------------------------------------------------- /android/src/main/java/com/multiplemodals/library/ModalView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/android/src/main/java/com/multiplemodals/library/ModalView.kt -------------------------------------------------------------------------------- /android/src/main/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/android/src/main/jni/CMakeLists.txt -------------------------------------------------------------------------------- /android/src/main/jni/multiplemodals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/android/src/main/jni/multiplemodals.h -------------------------------------------------------------------------------- /android/src/main/res/anim/rnt_fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/android/src/main/res/anim/rnt_fade_in.xml -------------------------------------------------------------------------------- /android/src/main/res/anim/rnt_fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/android/src/main/res/anim/rnt_fade_out.xml -------------------------------------------------------------------------------- /android/src/main/res/anim/rnt_slide_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/android/src/main/res/anim/rnt_slide_in.xml -------------------------------------------------------------------------------- /android/src/main/res/anim/rnt_slide_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/android/src/main/res/anim/rnt_slide_out.xml -------------------------------------------------------------------------------- /android/src/main/res/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/android/src/main/res/values/values.xml -------------------------------------------------------------------------------- /android/src/newarch/RNTModalViewManagerSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/android/src/newarch/RNTModalViewManagerSpec.kt -------------------------------------------------------------------------------- /android/src/oldarch/RNTModalViewManagerSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/android/src/oldarch/RNTModalViewManagerSpec.kt -------------------------------------------------------------------------------- /assets/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/assets/preview.gif -------------------------------------------------------------------------------- /common/cpp/react/renderer/components/multiplemodals/RNTModalViewComponentDescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/common/cpp/react/renderer/components/multiplemodals/RNTModalViewComponentDescriptor.cpp -------------------------------------------------------------------------------- /common/cpp/react/renderer/components/multiplemodals/RNTModalViewComponentDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/common/cpp/react/renderer/components/multiplemodals/RNTModalViewComponentDescriptor.h -------------------------------------------------------------------------------- /common/cpp/react/renderer/components/multiplemodals/RNTModalViewShadowNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/common/cpp/react/renderer/components/multiplemodals/RNTModalViewShadowNode.cpp -------------------------------------------------------------------------------- /common/cpp/react/renderer/components/multiplemodals/RNTModalViewShadowNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/common/cpp/react/renderer/components/multiplemodals/RNTModalViewShadowNode.h -------------------------------------------------------------------------------- /common/cpp/react/renderer/components/multiplemodals/RNTModalViewState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/common/cpp/react/renderer/components/multiplemodals/RNTModalViewState.cpp -------------------------------------------------------------------------------- /common/cpp/react/renderer/components/multiplemodals/RNTModalViewState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/common/cpp/react/renderer/components/multiplemodals/RNTModalViewState.h -------------------------------------------------------------------------------- /common/cpp/react/renderer/components/multiplemodals/RNTModalViewUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/common/cpp/react/renderer/components/multiplemodals/RNTModalViewUtils.h -------------------------------------------------------------------------------- /common/cpp/react/renderer/components/multiplemodals/RNTModalViewUtils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/common/cpp/react/renderer/components/multiplemodals/RNTModalViewUtils.mm -------------------------------------------------------------------------------- /common/cpp/react/renderer/components/multiplemodals/platform/android/JReactModalHostView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/common/cpp/react/renderer/components/multiplemodals/platform/android/JReactModalHostView.h -------------------------------------------------------------------------------- /common/cpp/react/renderer/components/multiplemodals/platform/android/RNTModalViewUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/common/cpp/react/renderer/components/multiplemodals/platform/android/RNTModalViewUtils.cpp -------------------------------------------------------------------------------- /common/cpp/react/renderer/components/multiplemodals/platform/cxx/RNTModalViewUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/common/cpp/react/renderer/components/multiplemodals/platform/cxx/RNTModalViewUtils.cpp -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/eslint.config.js -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/global.d.ts -------------------------------------------------------------------------------- /ios/Fabric/RNTModalViewComponentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/ios/Fabric/RNTModalViewComponentView.h -------------------------------------------------------------------------------- /ios/Fabric/RNTModalViewComponentView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/ios/Fabric/RNTModalViewComponentView.mm -------------------------------------------------------------------------------- /ios/Library/Animations/FadeIn/FadeInAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/ios/Library/Animations/FadeIn/FadeInAnimation.h -------------------------------------------------------------------------------- /ios/Library/Animations/FadeIn/FadeInAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/ios/Library/Animations/FadeIn/FadeInAnimation.m -------------------------------------------------------------------------------- /ios/Library/Animations/FadeOut/FadeOutAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/ios/Library/Animations/FadeOut/FadeOutAnimation.h -------------------------------------------------------------------------------- /ios/Library/Animations/FadeOut/FadeOutAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/ios/Library/Animations/FadeOut/FadeOutAnimation.m -------------------------------------------------------------------------------- /ios/Library/Animations/ModalAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/ios/Library/Animations/ModalAnimation.h -------------------------------------------------------------------------------- /ios/Library/Animations/ModalAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/ios/Library/Animations/ModalAnimation.m -------------------------------------------------------------------------------- /ios/Library/Animations/SlideIn/SlideInAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/ios/Library/Animations/SlideIn/SlideInAnimation.h -------------------------------------------------------------------------------- /ios/Library/Animations/SlideIn/SlideInAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/ios/Library/Animations/SlideIn/SlideInAnimation.m -------------------------------------------------------------------------------- /ios/Library/Animations/SlideOut/SlideOutAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/ios/Library/Animations/SlideOut/SlideOutAnimation.h -------------------------------------------------------------------------------- /ios/Library/Animations/SlideOut/SlideOutAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/ios/Library/Animations/SlideOut/SlideOutAnimation.m -------------------------------------------------------------------------------- /ios/Library/RNTModalMountingHelper/RNTModalMountingHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/ios/Library/RNTModalMountingHelper/RNTModalMountingHelper.h -------------------------------------------------------------------------------- /ios/Library/RNTModalMountingHelper/RNTModalMountingHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/ios/Library/RNTModalMountingHelper/RNTModalMountingHelper.m -------------------------------------------------------------------------------- /ios/Library/RNTModalViewController/RNTModalViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/ios/Library/RNTModalViewController/RNTModalViewController.h -------------------------------------------------------------------------------- /ios/Library/RNTModalViewController/RNTModalViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/ios/Library/RNTModalViewController/RNTModalViewController.m -------------------------------------------------------------------------------- /ios/Library/RNTModalWindowHelper/RNTModalWindowHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/ios/Library/RNTModalWindowHelper/RNTModalWindowHelper.h -------------------------------------------------------------------------------- /ios/Library/RNTModalWindowHelper/RNTModalWindowHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/ios/Library/RNTModalWindowHelper/RNTModalWindowHelper.m -------------------------------------------------------------------------------- /ios/RNTModal-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/ios/RNTModal-Bridging-Header.h -------------------------------------------------------------------------------- /ios/RNTModal.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/ios/RNTModal.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/RNTModalShadowView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/ios/RNTModalShadowView.h -------------------------------------------------------------------------------- /ios/RNTModalShadowView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/ios/RNTModalShadowView.m -------------------------------------------------------------------------------- /ios/RNTModalVIew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/ios/RNTModalVIew.h -------------------------------------------------------------------------------- /ios/RNTModalView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/ios/RNTModalView.m -------------------------------------------------------------------------------- /ios/RNTModalViewManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/ios/RNTModalViewManager.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/package.json -------------------------------------------------------------------------------- /react-native-multiple-modals.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/react-native-multiple-modals.podspec -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/react-native.config.js -------------------------------------------------------------------------------- /scripts/nightly-to-latest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/scripts/nightly-to-latest.sh -------------------------------------------------------------------------------- /src/LayoutInspectorProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/src/LayoutInspectorProvider.tsx -------------------------------------------------------------------------------- /src/ModalView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/src/ModalView.tsx -------------------------------------------------------------------------------- /src/ModalView.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/src/ModalView.web.tsx -------------------------------------------------------------------------------- /src/ScrollContextResetter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/src/ScrollContextResetter.tsx -------------------------------------------------------------------------------- /src/hooks/useID.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/src/hooks/useID.ts -------------------------------------------------------------------------------- /src/hooks/useModalRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/src/hooks/useModalRegistry.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/integrations/GestureHandlerRootView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/src/integrations/GestureHandlerRootView.tsx -------------------------------------------------------------------------------- /src/newarch/NativeRNTModalView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/src/newarch/NativeRNTModalView.ts -------------------------------------------------------------------------------- /src/newarch/NativeRNTModalView.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/src/newarch/NativeRNTModalView.web.tsx -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paufau/react-native-multiple-modals/HEAD/tsconfig.json --------------------------------------------------------------------------------