├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── actions │ └── setup │ │ └── action.yml ├── assets │ ├── Jairaj_Jangle_Google_Pay_UPI_QR_Code.jpg │ ├── buttons.png │ ├── gesture.png │ ├── paypal_donate.png │ └── upi.png └── workflows │ ├── beta-release.yml │ └── ci.yml ├── .gitignore ├── .nvmrc ├── .watchmanconfig ├── .yarn ├── plugins │ └── @yarnpkg │ │ ├── plugin-interactive-tools.cjs │ │ └── plugin-workspace-tools.cjs └── releases │ └── yarn-3.6.1.cjs ├── .yarnrc.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NavigationMode.podspec ├── README.md ├── android ├── build.gradle ├── gradle.properties └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── navigationmode │ ├── NavigationModeModule.kt │ └── NavigationModePackage.kt ├── app.plugin.js ├── babel.config.js ├── eslint.config.mjs ├── example ├── .bundle │ └── config ├── .watchmanconfig ├── Gemfile ├── Gemfile.lock ├── README.md ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── navigationmode │ │ │ │ └── example │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ └── rn_edit_text_material.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios │ ├── .xcode.env │ ├── NavigationModeExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── NavigationModeExample.xcscheme │ ├── NavigationModeExample.xcworkspace │ │ └── contents.xcworkspacedata │ ├── NavigationModeExample │ │ ├── AppDelegate.swift │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── PrivacyInfo.xcprivacy │ ├── Podfile │ └── Podfile.lock ├── jest.config.js ├── metro.config.js ├── package.json ├── react-native.config.js └── src │ ├── App.tsx │ └── app.styles.ts ├── expo-module.config.json ├── ios └── NavigationMode.h ├── lefthook.yml ├── package.json ├── plugin ├── src │ └── withNavigationMode.ts └── tsconfig.json ├── release.config.js ├── src ├── NativeNavigationMode.ts ├── __tests__ │ └── index.test.tsx └── index.tsx ├── tsconfig.build.json ├── tsconfig.json ├── turbo.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/assets/Jairaj_Jangle_Google_Pay_UPI_QR_Code.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/.github/assets/Jairaj_Jangle_Google_Pay_UPI_QR_Code.jpg -------------------------------------------------------------------------------- /.github/assets/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/.github/assets/buttons.png -------------------------------------------------------------------------------- /.github/assets/gesture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/.github/assets/gesture.png -------------------------------------------------------------------------------- /.github/assets/paypal_donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/.github/assets/paypal_donate.png -------------------------------------------------------------------------------- /.github/assets/upi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/.github/assets/upi.png -------------------------------------------------------------------------------- /.github/workflows/beta-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/.github/workflows/beta-release.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20.19.0 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.6.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/.yarn/releases/yarn-3.6.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/LICENSE -------------------------------------------------------------------------------- /NavigationMode.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/NavigationMode.podspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/navigationmode/NavigationModeModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/android/src/main/java/com/navigationmode/NavigationModeModule.kt -------------------------------------------------------------------------------- /android/src/main/java/com/navigationmode/NavigationModePackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/android/src/main/java/com/navigationmode/NavigationModePackage.kt -------------------------------------------------------------------------------- /app.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/app.plugin.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/babel.config.js -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /example/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/.bundle/config -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/Gemfile -------------------------------------------------------------------------------- /example/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/Gemfile.lock -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/README.md -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/navigationmode/example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/android/app/src/main/java/navigationmode/example/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/java/navigationmode/example/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/android/app/src/main/java/navigationmode/example/MainApplication.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/ios/.xcode.env -------------------------------------------------------------------------------- /example/ios/NavigationModeExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/ios/NavigationModeExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/NavigationModeExample.xcodeproj/xcshareddata/xcschemes/NavigationModeExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/ios/NavigationModeExample.xcodeproj/xcshareddata/xcschemes/NavigationModeExample.xcscheme -------------------------------------------------------------------------------- /example/ios/NavigationModeExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/ios/NavigationModeExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/NavigationModeExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/ios/NavigationModeExample/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/NavigationModeExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/ios/NavigationModeExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/NavigationModeExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/ios/NavigationModeExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/NavigationModeExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/ios/NavigationModeExample/Info.plist -------------------------------------------------------------------------------- /example/ios/NavigationModeExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/ios/NavigationModeExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/NavigationModeExample/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/ios/NavigationModeExample/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/package.json -------------------------------------------------------------------------------- /example/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/react-native.config.js -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/src/app.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/example/src/app.styles.ts -------------------------------------------------------------------------------- /expo-module.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/expo-module.config.json -------------------------------------------------------------------------------- /ios/NavigationMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/ios/NavigationMode.h -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/lefthook.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/package.json -------------------------------------------------------------------------------- /plugin/src/withNavigationMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/plugin/src/withNavigationMode.ts -------------------------------------------------------------------------------- /plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/plugin/tsconfig.json -------------------------------------------------------------------------------- /release.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/release.config.js -------------------------------------------------------------------------------- /src/NativeNavigationMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/src/NativeNavigationMode.ts -------------------------------------------------------------------------------- /src/__tests__/index.test.tsx: -------------------------------------------------------------------------------- 1 | it.todo('write a test'); 2 | -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/turbo.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JairajJangle/react-native-navigation-mode/HEAD/yarn.lock --------------------------------------------------------------------------------