├── .buckconfig ├── .clang-format ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── issue_template.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── android-build-test-fabric.yml │ ├── android-build-test.yml │ ├── android-e2e-test-fabric.yml │ ├── android-e2e-test.yml │ ├── check-archs-consistency.yml │ ├── close-when-stale.yml │ ├── docs-check.yml │ ├── helper │ └── clear-annotations.sh │ ├── ios-build-test-fabric.yml │ ├── ios-build-test.yml │ ├── ios-e2e-test-fabric.yml │ ├── ios-e2e-test.yml │ ├── lint.yml │ ├── needs-more-info.yml │ ├── needs-repro.yml │ ├── npm-screens-publish-nightly.yml │ ├── platforms.yml │ ├── tv-os-build-test.yml │ └── windows-build-test.yml ├── .gitignore ├── .gitmodules ├── .husky ├── .gitignore └── pre-commit ├── .npmignore ├── .nvmrc ├── .prettierrc.js ├── .swift-format ├── .watchmanconfig ├── .yarn └── releases │ └── yarn-4.1.1.cjs ├── .yarnrc.yml ├── Example ├── .bundle │ └── config ├── .detoxrc.js ├── .eslintrc.js ├── .gitignore ├── .ruby-version ├── .watchmanconfig ├── App.tsx ├── Gemfile ├── Gemfile.lock ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ ├── rns-example-keystore.jks │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── swmansion │ │ │ │ └── rnscreens │ │ │ │ └── example │ │ │ │ └── DetoxTest.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-playstore.png │ │ │ ├── java │ │ │ └── com │ │ │ │ └── swmansion │ │ │ │ └── rnscreens │ │ │ │ └── example │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ ├── custom_home_icon.xml │ │ │ └── rn_edit_text_material.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values │ │ │ ├── ic_launcher_background.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ └── network_security_config.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.json ├── babel.config.js ├── e2e │ ├── apps │ │ └── test-butler-app-2.2.1.apk │ ├── examplesTests │ │ ├── bottomTabs.e2e.ts │ │ ├── events.e2e.ts │ │ ├── simpleNativeStack.e2e.ts │ │ └── stackPresentation.e2e.ts │ ├── firstTest.e2e.ts │ ├── jest.config.js │ └── jest.setup.ts ├── index.js ├── ios │ ├── .xcode.env │ ├── AppDelegate.swift │ ├── Podfile │ ├── Podfile.lock │ ├── ReactNativeDelegate.swift │ ├── SceneDelegate.swift │ ├── ScreensExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── ScreensExample.xcscheme │ ├── ScreensExample.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── ScreensExample │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── 100.png │ │ │ │ ├── 1024.png │ │ │ │ ├── 114.png │ │ │ │ ├── 120.png │ │ │ │ ├── 144.png │ │ │ │ ├── 152.png │ │ │ │ ├── 167.png │ │ │ │ ├── 180.png │ │ │ │ ├── 20.png │ │ │ │ ├── 29.png │ │ │ │ ├── 40.png │ │ │ │ ├── 50.png │ │ │ │ ├── 57.png │ │ │ │ ├── 58.png │ │ │ │ ├── 60.png │ │ │ │ ├── 72.png │ │ │ │ ├── 76.png │ │ │ │ ├── 80.png │ │ │ │ ├── 87.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── react-native-screens-logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── react-native-screens-logo.png │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── PrivacyInfo.xcprivacy │ │ └── RNSSampleLifecycleAwareView.m │ └── ScreensExampleTests │ │ ├── Info.plist │ │ └── ScreensExampleTests.m ├── jest.config.js ├── metro.config.js ├── package.json ├── tsconfig.json └── yarn.lock ├── FabricExample ├── .bundle │ └── config ├── .detoxrc.js ├── .eslintrc.js ├── .gitignore ├── .watchmanconfig ├── App.tsx ├── Gemfile ├── Gemfile.lock ├── README.md ├── __tests__ │ └── App.test.tsx ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ ├── rns-example-keystore.jks │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── swmansion │ │ │ │ └── rnscreens │ │ │ │ └── DetoxTest.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-playstore.png │ │ │ ├── java │ │ │ └── com │ │ │ │ └── fabricexample │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ ├── custom_home_icon.xml │ │ │ └── rn_edit_text_material.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values │ │ │ ├── ic_launcher_background.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ └── network_security_config.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── e2e │ ├── e2e-utils.ts │ ├── examplesTests │ │ ├── bottomTabs.e2e.ts │ │ ├── events.e2e.ts │ │ ├── simpleNativeStack.e2e.ts │ │ └── stackPresentation.e2e.ts │ ├── firstTest.e2e.ts │ ├── issuesTests │ │ ├── Test2543.e2e.ts │ │ ├── Test2809.e2e.ts │ │ ├── Test2842.e2e.ts │ │ ├── Test2877.e2e.ts │ │ ├── Test2926.e2e.ts │ │ ├── Test2963.e2e.ts │ │ ├── Test432.e2e.ts │ │ ├── Test528.e2e.ts │ │ ├── Test577.e2e.ts │ │ ├── Test593.e2e.ts │ │ ├── Test640.e2e.ts │ │ ├── Test645.e2e.ts │ │ ├── Test649.e2e.ts │ │ ├── Test654.e2e.ts │ │ ├── Test658.e2e.ts │ │ ├── Test691.e2e.ts │ │ ├── Test726.e2e.ts │ │ └── Test791.e2e.ts │ ├── jest.config.js │ └── jest.setup.ts ├── index.js ├── ios │ ├── .ruby-version │ ├── .xcode.env │ ├── AppDelegate.swift │ ├── FabricExample-Bridging-Header.h │ ├── FabricExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── FabricExample.xcscheme │ ├── FabricExample.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── FabricExample │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── AppIcon-20@2x.png │ │ │ │ ├── AppIcon-20@2x~ipad.png │ │ │ │ ├── AppIcon-20@3x.png │ │ │ │ ├── AppIcon-20~ipad.png │ │ │ │ ├── AppIcon-29.png │ │ │ │ ├── AppIcon-29@2x.png │ │ │ │ ├── AppIcon-29@2x~ipad.png │ │ │ │ ├── AppIcon-29@3x.png │ │ │ │ ├── AppIcon-29~ipad.png │ │ │ │ ├── AppIcon-40@2x.png │ │ │ │ ├── AppIcon-40@2x~ipad.png │ │ │ │ ├── AppIcon-40@3x.png │ │ │ │ ├── AppIcon-40~ipad.png │ │ │ │ ├── AppIcon-60@2x~car.png │ │ │ │ ├── AppIcon-60@3x~car.png │ │ │ │ ├── AppIcon-83.5@2x~ipad.png │ │ │ │ ├── AppIcon@2x.png │ │ │ │ ├── AppIcon@2x~ipad.png │ │ │ │ ├── AppIcon@3x.png │ │ │ │ ├── AppIcon~ios-marketing.png │ │ │ │ ├── AppIcon~ipad.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── react-native-screens-logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── react-native-screens-logo.png │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── PrivacyInfo.xcprivacy │ ├── Podfile │ ├── Podfile.lock │ ├── ReactNativeDelegate.swift │ └── SceneDelegate.swift ├── jest.config.js ├── metro.config.js ├── package.json ├── tsconfig.json └── yarn.lock ├── LICENSE ├── README-Fabric.md ├── README.md ├── RNScreens.podspec ├── TVOSExample ├── .bundle │ └── config ├── .eslintrc.js ├── .gitignore ├── .watchmanconfig ├── App.tsx ├── Gemfile ├── Gemfile.lock ├── __tests__ │ └── App.test.tsx ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── tvosexample │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ ├── rn_edit_text_material.xml │ │ │ └── tv_banner.png │ │ │ ├── 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 │ ├── AppDelegate.swift │ ├── Podfile │ ├── Podfile.lock │ ├── TVOSExample-Bridging-Header.h │ ├── TVOSExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── TVOSExample.xcscheme │ ├── TVOSExample.xcworkspace │ │ └── contents.xcworkspacedata │ └── TVOSExample │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── PrivacyInfo.xcprivacy ├── jest.config.js ├── metro.config.js ├── package.json ├── tsconfig.json └── yarn.lock ├── android ├── CMakeLists.txt ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle ├── spotless.gradle └── src │ ├── fabric │ └── java │ │ └── com │ │ └── swmansion │ │ └── rnscreens │ │ ├── FabricEnabledHeaderConfigViewGroup.kt │ │ ├── FabricEnabledHeaderSubviewViewGroup.kt │ │ ├── FabricEnabledViewGroup.kt │ │ └── NativeProxy.kt │ ├── main │ ├── AndroidManifest.xml │ ├── cpp │ │ ├── NativeProxy.cpp │ │ ├── NativeProxy.h │ │ ├── OnLoad.cpp │ │ └── jni-adapter.cpp │ ├── java │ │ └── com │ │ │ └── swmansion │ │ │ └── rnscreens │ │ │ ├── CustomSearchView.kt │ │ │ ├── CustomToolbar.kt │ │ │ ├── FragmentBackPressOverrider.kt │ │ │ ├── FragmentHolder.kt │ │ │ ├── InsetsObserverProxy.kt │ │ │ ├── LifecycleHelper.kt │ │ │ ├── ModalScreenViewManager.kt │ │ │ ├── PointerEventsBoxNoneImpl.kt │ │ │ ├── RNScreensPackage.kt │ │ │ ├── Screen.kt │ │ │ ├── ScreenContainer.kt │ │ │ ├── ScreenContainerViewManager.kt │ │ │ ├── ScreenContentWrapper.kt │ │ │ ├── ScreenContentWrapperManager.kt │ │ │ ├── ScreenEventDispatcher.kt │ │ │ ├── ScreenFooter.kt │ │ │ ├── ScreenFooterManager.kt │ │ │ ├── ScreenFragment.kt │ │ │ ├── ScreenFragmentWrapper.kt │ │ │ ├── ScreenModalFragment.kt │ │ │ ├── ScreenStack.kt │ │ │ ├── ScreenStackFragment.kt │ │ │ ├── ScreenStackFragmentWrapper.kt │ │ │ ├── ScreenStackHeaderConfig.kt │ │ │ ├── ScreenStackHeaderConfigShadowNode.kt │ │ │ ├── ScreenStackHeaderConfigViewManager.kt │ │ │ ├── ScreenStackHeaderHeightUpdateProxy.kt │ │ │ ├── ScreenStackHeaderSubview.kt │ │ │ ├── ScreenStackHeaderSubviewManager.kt │ │ │ ├── ScreenStackViewManager.kt │ │ │ ├── ScreenViewManager.kt │ │ │ ├── ScreenWindowTraits.kt │ │ │ ├── ScreensModule.kt │ │ │ ├── ScreensShadowNode.kt │ │ │ ├── SearchBarManager.kt │ │ │ ├── SearchBarView.kt │ │ │ ├── SearchViewFormatter.kt │ │ │ ├── bottomsheet │ │ │ ├── BottomSheetBehaviorExt.kt │ │ │ ├── BottomSheetDialogRootView.kt │ │ │ ├── BottomSheetDialogScreen.kt │ │ │ ├── BottomSheetTransitionCoordinator.kt │ │ │ ├── BottomSheetWindowInsetListenerChain.kt │ │ │ ├── DimmingView.kt │ │ │ ├── DimmingViewManager.kt │ │ │ ├── DimmingViewPointerEvents.kt │ │ │ ├── SheetDelegate.kt │ │ │ ├── SheetDetents.kt │ │ │ └── SheetUtils.kt │ │ │ ├── events │ │ │ ├── HeaderAttachedEvent.kt │ │ │ ├── HeaderBackButtonClickedEvent.kt │ │ │ ├── HeaderDetachedEvent.kt │ │ │ ├── HeaderHeightChangeEvent.kt │ │ │ ├── ScreenAnimationDelegate.kt │ │ │ ├── ScreenAppearEvent.kt │ │ │ ├── ScreenDisappearEvent.kt │ │ │ ├── ScreenDismissedEvent.kt │ │ │ ├── ScreenEventEmitter.kt │ │ │ ├── ScreenTransitionProgressEvent.kt │ │ │ ├── ScreenWillAppearEvent.kt │ │ │ ├── ScreenWillDisappearEvent.kt │ │ │ ├── SearchBarBlurEvent.kt │ │ │ ├── SearchBarChangeTextEvent.kt │ │ │ ├── SearchBarCloseEvent.kt │ │ │ ├── SearchBarFocusEvent.kt │ │ │ ├── SearchBarOpenEvent.kt │ │ │ ├── SearchBarSearchButtonPressEvent.kt │ │ │ ├── SheetDetentChangedEvent.kt │ │ │ └── StackFinishTransitioningEvent.kt │ │ │ ├── ext │ │ │ ├── FragmentExt.kt │ │ │ ├── NumericExt.kt │ │ │ └── ViewExt.kt │ │ │ ├── fragment │ │ │ └── restoration │ │ │ │ ├── AutoRemovingFragment.kt │ │ │ │ └── RNScreensFragmentFactory.kt │ │ │ ├── gamma │ │ │ ├── common │ │ │ │ ├── BaseEventEmitter.kt │ │ │ │ ├── FragmentProviding.kt │ │ │ │ └── NamingAwareEventType.kt │ │ │ ├── helpers │ │ │ │ ├── EventHelpers.kt │ │ │ │ ├── FragmentManagerHelper.kt │ │ │ │ ├── SystemDrawable.kt │ │ │ │ ├── ViewFinder.kt │ │ │ │ └── ViewIdHelpers.kt │ │ │ └── tabs │ │ │ │ ├── TabScreen.kt │ │ │ │ ├── TabScreenDelegate.kt │ │ │ │ ├── TabScreenEventEmitter.kt │ │ │ │ ├── TabScreenFragment.kt │ │ │ │ ├── TabScreenViewManager.kt │ │ │ │ ├── TabsHost.kt │ │ │ │ ├── TabsHostAppearanceApplicator.kt │ │ │ │ ├── TabsHostAppearanceCoordinator.kt │ │ │ │ ├── TabsHostEventEmitter.kt │ │ │ │ ├── TabsHostViewManager.kt │ │ │ │ ├── event │ │ │ │ ├── TabScreenDidAppearEvent.kt │ │ │ │ ├── TabScreenDidDisappearEvent.kt │ │ │ │ ├── TabScreenWillAppearEvent.kt │ │ │ │ ├── TabScreenWillDisappearEvent.kt │ │ │ │ └── TabsHostNativeFocusChangeEvent.kt │ │ │ │ └── image │ │ │ │ └── TabsImageLoader.kt │ │ │ ├── safearea │ │ │ ├── EdgeInsets.kt │ │ │ ├── InsetType.kt │ │ │ ├── SafeAreaProvider.kt │ │ │ ├── SafeAreaView.kt │ │ │ ├── SafeAreaViewManager.kt │ │ │ └── paper │ │ │ │ ├── SafeAreaViewEdges.kt │ │ │ │ ├── SafeAreaViewLocalData.kt │ │ │ │ └── SafeAreaViewShadowNode.kt │ │ │ ├── stack │ │ │ ├── anim │ │ │ │ └── ScreensAnimation.kt │ │ │ └── views │ │ │ │ ├── ChildDrawingOrderStrategyImpl.kt │ │ │ │ ├── ChildrenDrawingOrderStrategy.kt │ │ │ │ └── ScreensCoordinatorLayout.kt │ │ │ ├── transition │ │ │ └── ExternalBoundaryValuesEvaluator.kt │ │ │ └── utils │ │ │ ├── DeviceUtils.kt │ │ │ ├── FragmentTransactionKt.kt │ │ │ ├── InsetsKt.kt │ │ │ ├── PaddingBundle.kt │ │ │ ├── RNSLog.kt │ │ │ ├── ScreenDummyLayoutHelper.kt │ │ │ └── ViewBackgroundUtils.kt │ ├── jni │ │ ├── CMakeLists.txt │ │ ├── rnscreens.cpp │ │ └── rnscreens.h │ └── res │ │ ├── base │ │ ├── anim │ │ │ ├── rns_default_enter_in.xml │ │ │ ├── rns_default_enter_out.xml │ │ │ ├── rns_default_exit_in.xml │ │ │ ├── rns_default_exit_out.xml │ │ │ ├── rns_fade_from_bottom.xml │ │ │ ├── rns_fade_in.xml │ │ │ ├── rns_fade_out.xml │ │ │ ├── rns_fade_to_bottom.xml │ │ │ ├── rns_ios_from_left_background_close.xml │ │ │ ├── rns_ios_from_left_background_open.xml │ │ │ ├── rns_ios_from_left_foreground_close.xml │ │ │ ├── rns_ios_from_left_foreground_open.xml │ │ │ ├── rns_ios_from_right_background_close.xml │ │ │ ├── rns_ios_from_right_background_open.xml │ │ │ ├── rns_ios_from_right_foreground_close.xml │ │ │ ├── rns_ios_from_right_foreground_open.xml │ │ │ ├── rns_no_animation_20.xml │ │ │ ├── rns_no_animation_250.xml │ │ │ ├── rns_no_animation_350.xml │ │ │ ├── rns_no_animation_medium.xml │ │ │ ├── rns_slide_in_from_bottom.xml │ │ │ ├── rns_slide_in_from_left.xml │ │ │ ├── rns_slide_in_from_right.xml │ │ │ ├── rns_slide_out_to_bottom.xml │ │ │ ├── rns_slide_out_to_left.xml │ │ │ ├── rns_slide_out_to_right.xml │ │ │ └── rns_standard_accelerate_interpolator.xml │ │ ├── drawable │ │ │ └── rns_rounder_top_corners_shape.xml │ │ └── values │ │ │ └── themes.xml │ │ └── v33 │ │ └── anim-v33 │ │ ├── rns_default_enter_in.xml │ │ ├── rns_default_enter_out.xml │ │ ├── rns_default_exit_in.xml │ │ └── rns_default_exit_out.xml │ └── paper │ └── java │ └── com │ ├── facebook │ └── react │ │ └── viewmanagers │ │ ├── RNSBottomTabsManagerDelegate.java │ │ ├── RNSBottomTabsManagerInterface.java │ │ ├── RNSBottomTabsScreenManagerDelegate.java │ │ ├── RNSBottomTabsScreenManagerInterface.java │ │ ├── RNSSafeAreaViewManagerDelegate.java │ │ ├── RNSSafeAreaViewManagerInterface.java │ │ ├── RNSScreenContainerManagerDelegate.java │ │ ├── RNSScreenContainerManagerInterface.java │ │ ├── RNSScreenContentWrapperManagerDelegate.java │ │ ├── RNSScreenContentWrapperManagerInterface.java │ │ ├── RNSScreenFooterManagerDelegate.java │ │ ├── RNSScreenFooterManagerInterface.java │ │ ├── RNSScreenManagerDelegate.java │ │ ├── RNSScreenManagerInterface.java │ │ ├── RNSScreenStackHeaderConfigManagerDelegate.java │ │ ├── RNSScreenStackHeaderConfigManagerInterface.java │ │ ├── RNSScreenStackHeaderSubviewManagerDelegate.java │ │ ├── RNSScreenStackHeaderSubviewManagerInterface.java │ │ ├── RNSScreenStackManagerDelegate.java │ │ ├── RNSScreenStackManagerInterface.java │ │ ├── RNSSearchBarManagerDelegate.java │ │ └── RNSSearchBarManagerInterface.java │ └── swmansion │ └── rnscreens │ ├── FabricEnabledHeaderConfigViewGroup.kt │ ├── FabricEnabledHeaderSubviewViewGroup.kt │ ├── FabricEnabledViewGroup.kt │ ├── NativeProxy.kt │ └── NativeScreensModuleSpec.java ├── apps ├── .eslintrc.js ├── App.tsx ├── Example.tsx ├── assets │ ├── backButton.png │ ├── search_black.png │ ├── search_white.png │ ├── svg │ │ └── cart.svg │ ├── trees.jpg │ └── variableIcons │ │ ├── icon@1x.png │ │ ├── icon@2x.png │ │ ├── icon@3x.png │ │ ├── icon_fill@1x.png │ │ ├── icon_fill@2x.png │ │ └── icon_fill@3x.png ├── index.ts ├── src │ ├── screens │ │ ├── Animations.tsx │ │ ├── BarButtonItems.tsx │ │ ├── BottomTabsAndStack.tsx │ │ ├── Events.tsx │ │ ├── Gestures.tsx │ │ ├── HeaderOptions.tsx │ │ ├── Modals.tsx │ │ ├── Orientation.tsx │ │ ├── PreventRemove.tsx │ │ ├── SearchBar.tsx │ │ ├── SimpleNativeStack.tsx │ │ ├── StackPresentation.tsx │ │ ├── StatusBar.tsx │ │ └── SwipeBackAnimation.tsx │ ├── shared │ │ ├── Alert.tsx │ │ ├── Button.tsx │ │ ├── CenteredLayoutView.tsx │ │ ├── Choose.tsx │ │ ├── Dialog.tsx │ │ ├── Form.tsx │ │ ├── ListItem.tsx │ │ ├── LongText.tsx │ │ ├── PressableWithFeedback.tsx │ │ ├── Rectangle.tsx │ │ ├── SettingsInput.tsx │ │ ├── SettingsMultiInput.tsx │ │ ├── SettingsPicker.tsx │ │ ├── SettingsSwitch.tsx │ │ ├── Snack.tsx │ │ ├── Spacer.tsx │ │ ├── Square.tsx │ │ ├── ThemedText.tsx │ │ ├── ThemedTextInput.tsx │ │ ├── ThemedView.tsx │ │ ├── Toast.tsx │ │ ├── gamma │ │ │ └── containers │ │ │ │ ├── bottom-tabs │ │ │ │ ├── BottomTabsContainer.tsx │ │ │ │ └── ConfigWrapperContext.tsx │ │ │ │ └── stack │ │ │ │ └── StackContainer.tsx │ │ ├── index.ts │ │ ├── styles.tsx │ │ └── styling │ │ │ ├── Colors.ts │ │ │ └── adapter │ │ │ └── react-navigation │ │ │ ├── index.ts │ │ │ └── useColorPallette.tsx │ └── tests │ │ ├── Test1017.tsx │ │ ├── Test1031.tsx │ │ ├── Test1032.tsx │ │ ├── Test1036.tsx │ │ ├── Test1072.tsx │ │ ├── Test1084.tsx │ │ ├── Test1091.tsx │ │ ├── Test1096.tsx │ │ ├── Test1097.tsx │ │ ├── Test111.js │ │ ├── Test1153.tsx │ │ ├── Test1157.tsx │ │ ├── Test1162.tsx │ │ ├── Test1166 │ │ ├── AndroidDifferentScreenSearch.tsx │ │ ├── AndroidSearchBarCustomization.tsx │ │ ├── AndroidSearchBarEvents.tsx │ │ ├── AndroidSearchTypes.tsx │ │ └── index.tsx │ │ ├── Test1188.tsx │ │ ├── Test1190.tsx │ │ ├── Test1198.tsx │ │ ├── Test1204.tsx │ │ ├── Test1209.tsx │ │ ├── Test1213.tsx │ │ ├── Test1214.tsx │ │ ├── Test1227.tsx │ │ ├── Test1228.tsx │ │ ├── Test1259.tsx │ │ ├── Test1260.tsx │ │ ├── Test1296.tsx │ │ ├── Test1299.tsx │ │ ├── Test1391.tsx │ │ ├── Test1419.tsx │ │ ├── Test1463.tsx │ │ ├── Test1473.tsx │ │ ├── Test1476.tsx │ │ ├── Test1509.tsx │ │ ├── Test1539.tsx │ │ ├── Test1645.js │ │ ├── Test1646.tsx │ │ ├── Test1649 │ │ ├── components │ │ │ ├── CommonSheetContent.tsx │ │ │ ├── Footer.tsx │ │ │ └── GestureHandlerButton.tsx │ │ ├── index.tsx │ │ ├── routes.tsx │ │ ├── screens │ │ │ ├── Home.tsx │ │ │ ├── ModalScreen.tsx │ │ │ ├── PushWithScrollView.tsx │ │ │ ├── Second.tsx │ │ │ ├── SheetScreen.tsx │ │ │ ├── SheetScreenWithScrollView.tsx │ │ │ ├── SheetScreenWithTextInput.tsx │ │ │ └── Third.tsx │ │ ├── state.tsx │ │ └── types.tsx │ │ ├── Test1671.tsx │ │ ├── Test1683.tsx │ │ ├── Test1726.tsx │ │ ├── Test1791.tsx │ │ ├── Test1802.tsx │ │ ├── Test1829 │ │ ├── index.tsx │ │ ├── navigation │ │ │ └── Stacks.tsx │ │ └── screens │ │ │ ├── CardView.tsx │ │ │ ├── HomeView.tsx │ │ │ ├── InnerModal.tsx │ │ │ ├── InnerView.tsx │ │ │ └── ModalView.tsx │ │ ├── Test1844.tsx │ │ ├── Test1864.tsx │ │ ├── Test1970.jsx │ │ ├── Test1975.tsx │ │ ├── Test1981.tsx │ │ ├── Test2002.tsx │ │ ├── Test2008.tsx │ │ ├── Test2028.tsx │ │ ├── Test2048.tsx │ │ ├── Test2069.tsx │ │ ├── Test2118.tsx │ │ ├── Test2125.tsx │ │ ├── Test2167.tsx │ │ ├── Test2175.tsx │ │ ├── Test2184.tsx │ │ ├── Test2223.tsx │ │ ├── Test2227.tsx │ │ ├── Test2229.tsx │ │ ├── Test2232.tsx │ │ ├── Test2235.tsx │ │ ├── Test2252.tsx │ │ ├── Test2271.tsx │ │ ├── Test2282.tsx │ │ ├── Test2317.tsx │ │ ├── Test2320.tsx │ │ ├── Test2332.tsx │ │ ├── Test2379.tsx │ │ ├── Test2395.tsx │ │ ├── Test2466.tsx │ │ ├── Test2538.tsx │ │ ├── Test2543.tsx │ │ ├── Test2552.tsx │ │ ├── Test2611.tsx │ │ ├── Test263.js │ │ ├── Test2631.tsx │ │ ├── Test2668.tsx │ │ ├── Test2675.tsx │ │ ├── Test2714.tsx │ │ ├── Test2717.tsx │ │ ├── Test2767.tsx │ │ ├── Test2789.tsx │ │ ├── Test2809 │ │ ├── Shared.tsx │ │ └── index.tsx │ │ ├── Test2811.tsx │ │ ├── Test2819.tsx │ │ ├── Test2842.tsx │ │ ├── Test2855.tsx │ │ ├── Test2877.tsx │ │ ├── Test2895.tsx │ │ ├── Test2899.tsx │ │ ├── Test2926.tsx │ │ ├── Test2933.tsx │ │ ├── Test2949.tsx │ │ ├── Test2963.tsx │ │ ├── Test3004.tsx │ │ ├── Test3045.tsx │ │ ├── Test3074.tsx │ │ ├── Test3093.tsx │ │ ├── Test3111.tsx │ │ ├── Test3115.tsx │ │ ├── Test3168.tsx │ │ ├── Test3173.tsx │ │ ├── Test3212 │ │ ├── BottomTabsInStackScenario.tsx │ │ ├── BottomTabsScenario.tsx │ │ ├── Config.tsx │ │ ├── ScrollViewTemplate.tsx │ │ ├── StackInBottomTabsScenario.tsx │ │ ├── StackInStackScenario.tsx │ │ ├── StackScenario.tsx │ │ ├── context.tsx │ │ └── index.tsx │ │ ├── Test3236.tsx │ │ ├── Test3239.tsx │ │ ├── Test3248.tsx │ │ ├── Test3265.tsx │ │ ├── Test3271.tsx │ │ ├── Test3282.tsx │ │ ├── Test3288.tsx │ │ ├── Test3336.tsx │ │ ├── Test3342.tsx │ │ ├── Test3346.tsx │ │ ├── Test3369.tsx │ │ ├── Test3379.tsx │ │ ├── Test3422.tsx │ │ ├── Test3425.tsx │ │ ├── Test349.js │ │ ├── Test364.js │ │ ├── Test42.tsx │ │ ├── Test432.tsx │ │ ├── Test528.js │ │ ├── Test550.js │ │ ├── Test556.tsx │ │ ├── Test564.js │ │ ├── Test577.js │ │ ├── Test593.tsx │ │ ├── Test619.js │ │ ├── Test624.js │ │ ├── Test640.js │ │ ├── Test642.tsx │ │ ├── Test645.js │ │ ├── Test648.js │ │ ├── Test649.js │ │ ├── Test654.js │ │ ├── Test658.js │ │ ├── Test662.tsx │ │ ├── Test691.js │ │ ├── Test702.js │ │ ├── Test706.js │ │ ├── Test713.js │ │ ├── Test726.js │ │ ├── Test748.tsx │ │ ├── Test750.js │ │ ├── Test758.tsx │ │ ├── Test761.tsx │ │ ├── Test779.tsx │ │ ├── Test780.tsx │ │ ├── Test791.tsx │ │ ├── Test800.tsx │ │ ├── Test817.tsx │ │ ├── Test830.tsx │ │ ├── Test831.tsx │ │ ├── Test844.tsx │ │ ├── Test852.tsx │ │ ├── Test860.tsx │ │ ├── Test861.tsx │ │ ├── Test865.tsx │ │ ├── Test881.tsx │ │ ├── Test887.tsx │ │ ├── Test913.tsx │ │ ├── Test999.tsx │ │ ├── TestActivityStateProgression.tsx │ │ ├── TestAndroidTransitions.tsx │ │ ├── TestAnimation.tsx │ │ ├── TestBottomTabs │ │ ├── components │ │ │ ├── TabConfigurationSummary.tsx │ │ │ ├── TabContentView.tsx │ │ │ └── TabPlaceholder.tsx │ │ ├── index.tsx │ │ ├── tabs │ │ │ ├── Tab1.tsx │ │ │ ├── Tab2.tsx │ │ │ ├── Tab3.tsx │ │ │ ├── Tab4.tsx │ │ │ └── index.tsx │ │ └── utils.tsx │ │ ├── TestBottomTabsOrientation.tsx │ │ ├── TestFormSheet.tsx │ │ ├── TestFreeze.tsx │ │ ├── TestHeader.tsx │ │ ├── TestHeaderHeight.tsx │ │ ├── TestHeaderTitle.tsx │ │ ├── TestMemoryLeak.tsx │ │ ├── TestModalNavigation.tsx │ │ ├── TestPreload.tsx │ │ ├── TestSafeAreaViewIOS │ │ ├── bottom-tabs │ │ │ ├── BottomTabsComponent.tsx │ │ │ ├── BottomTabsSAVExampleContext.tsx │ │ │ ├── ConfigTab.tsx │ │ │ ├── TestTab.tsx │ │ │ └── index.tsx │ │ ├── index.tsx │ │ ├── shared │ │ │ ├── Info.tsx │ │ │ ├── RegularView.tsx │ │ │ ├── ScrollViewAutomatic.tsx │ │ │ ├── ScrollViewNever.tsx │ │ │ └── index.tsx │ │ ├── split-view │ │ │ ├── ConfigColumn.tsx │ │ │ ├── ConfigColumnTab.tsx │ │ │ ├── SplitViewSAVExampleContext.tsx │ │ │ └── index.tsx │ │ └── stack-v4 │ │ │ ├── ConfigScreen.tsx │ │ │ ├── StackV4SAVExampleContext.tsx │ │ │ ├── TestScreen.tsx │ │ │ └── index.tsx │ │ ├── TestScreenAnimation.tsx │ │ ├── TestScreenAnimationV5.tsx │ │ ├── TestScreenStack │ │ ├── ScreenLayout.tsx │ │ ├── helper.tsx │ │ └── index.tsx │ │ ├── TestSplitView │ │ ├── SplitViewBaseApp.tsx │ │ ├── SplitViewOrientation.tsx │ │ ├── SplitViewPerfApp.tsx │ │ ├── SplitViewPrimaryBackgroundStyle.tsx │ │ ├── SplitViewWithNativeStack │ │ │ ├── SplitViewWithNativeStackBase.tsx │ │ │ ├── SplitViewWithNativeStackContainedModal.tsx │ │ │ ├── SplitViewWithNativeStackGestures.tsx │ │ │ ├── SplitViewWithNativeStackHeader.tsx │ │ │ ├── SplitViewWithNativeStackHeaderStyles.tsx │ │ │ ├── SplitViewWithNativeStackModal.tsx │ │ │ ├── SplitViewWithNativeStackPresentation.tsx │ │ │ ├── SplitViewWithNativeStackSearchBar.tsx │ │ │ ├── SplitViewWithNativeStackSheet.tsx │ │ │ ├── SplitViewWithNestedStack.tsx │ │ │ ├── common.tsx │ │ │ └── index.tsx │ │ ├── helpers │ │ │ ├── NativeStackNavigatorComponent.tsx │ │ │ ├── index.tsx │ │ │ └── types.ts │ │ └── index.tsx │ │ └── index.ts └── tsconfig.json ├── babel.config.js ├── common └── cpp │ └── react │ └── renderer │ └── components │ └── rnscreens │ ├── FrameCorrectionModes.h │ ├── RNSBottomTabsAccessoryComponentDescriptor.h │ ├── RNSBottomTabsAccessoryShadowNode.cpp │ ├── RNSBottomTabsAccessoryShadowNode.h │ ├── RNSBottomTabsAccessoryState.h │ ├── RNSBottomTabsComponentDescriptor.h │ ├── RNSBottomTabsShadowNode.cpp │ ├── RNSBottomTabsShadowNode.h │ ├── RNSBottomTabsState.cpp │ ├── RNSBottomTabsState.h │ ├── RNSFullWindowOverlayComponentDescriptor.h │ ├── RNSFullWindowOverlayShadowNode.cpp │ ├── RNSFullWindowOverlayShadowNode.h │ ├── RNSFullWindowOverlayState.h │ ├── RNSModalScreenComponentDescriptor.h │ ├── RNSModalScreenShadowNode.cpp │ ├── RNSModalScreenShadowNode.h │ ├── RNSSafeAreaViewComponentDescriptor.h │ ├── RNSSafeAreaViewShadowNode.cpp │ ├── RNSSafeAreaViewShadowNode.h │ ├── RNSSafeAreaViewState.cpp │ ├── RNSSafeAreaViewState.h │ ├── RNSScreenComponentDescriptor.h │ ├── RNSScreenShadowNode.cpp │ ├── RNSScreenShadowNode.h │ ├── RNSScreenShadowNodeCommitHook.cpp │ ├── RNSScreenShadowNodeCommitHook.h │ ├── RNSScreenStackHeaderConfigComponentDescriptor.h │ ├── RNSScreenStackHeaderConfigShadowNode.cpp │ ├── RNSScreenStackHeaderConfigShadowNode.h │ ├── RNSScreenStackHeaderConfigState.cpp │ ├── RNSScreenStackHeaderConfigState.h │ ├── RNSScreenStackHeaderSubviewComponentDescriptor.h │ ├── RNSScreenStackHeaderSubviewShadowNode.cpp │ ├── RNSScreenStackHeaderSubviewShadowNode.h │ ├── RNSScreenStackHeaderSubviewState.cpp │ ├── RNSScreenStackHeaderSubviewState.h │ ├── RNSScreenState.cpp │ ├── RNSScreenState.h │ ├── RNSSplitViewScreenComponentDescriptor.h │ ├── RNSSplitViewScreenShadowNode.cpp │ ├── RNSSplitViewScreenShadowNode.h │ ├── RNSSplitViewScreenState.h │ └── utils │ └── RectUtil.h ├── cpp ├── RNSScreenRemovalListener.cpp ├── RNSScreenRemovalListener.h ├── RNScreensTurboModule.cpp └── RNScreensTurboModule.h ├── docs ├── .gitignore ├── README.md ├── babel.config.js ├── docs │ └── intro.md ├── docusaurus.config.js ├── package.json ├── sidebars.js ├── src │ ├── components │ │ ├── Downloads │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ ├── FooterBackground │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ ├── Hero │ │ │ ├── LandingBackground │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ ├── ScreenSequence │ │ │ │ ├── Sequence │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ └── StartScreen │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ ├── HomepageButton │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ ├── LearnMore │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ ├── Overview │ │ │ ├── Multiplatform │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ ├── OverviewTile │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ ├── Sponsors │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ └── Testimonials │ │ │ ├── TestimonialItem │ │ │ ├── QuoteIcon │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ │ ├── TestimonialList │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ ├── css │ │ ├── colors.css │ │ ├── custom.css │ │ ├── overrides.css │ │ └── typography.css │ ├── hooks │ │ ├── usePageType.tsx │ │ └── useScreenSize.tsx │ ├── pages │ │ ├── index.js │ │ └── styles.module.css │ └── theme │ │ ├── Footer │ │ └── index.js │ │ ├── Navbar │ │ └── index.js │ │ ├── Root.js │ │ └── muiTheme.tsx ├── static │ ├── .nojekyll │ ├── fonts │ │ ├── Aeonik-Bold.otf │ │ ├── Aeonik-Medium.otf │ │ ├── Aeonik-Regular.otf │ │ └── DMMono-Regular.ttf │ └── img │ │ ├── arrow-right-hero.svg │ │ ├── expo-dark.svg │ │ ├── expo-router.svg │ │ ├── expo.svg │ │ ├── favicon.ico │ │ ├── github.svg │ │ ├── laptop.svg │ │ ├── logo-dark.svg │ │ ├── logo.svg │ │ ├── og-image.png │ │ ├── overview-customisable.png │ │ ├── overview-multiplatform.png │ │ ├── overview-native.png │ │ ├── phone.svg │ │ ├── react-navigation.svg │ │ ├── shopify-dark.svg │ │ ├── shopify.svg │ │ ├── tv.svg │ │ └── vr.svg └── yarn.lock ├── experimental └── package.json ├── gesture-handler └── package.json ├── guides ├── CONTRIBUTING.md ├── GUIDE_FOR_LIBRARY_AUTHORS.md ├── android_studio.png └── xcode.png ├── ios ├── RCTConvert+RNScreens.h ├── RCTConvert+RNScreens.mm ├── RCTImageComponentView+RNSScreenStackHeaderConfig.h ├── RCTImageComponentView+RNSScreenStackHeaderConfig.mm ├── RNSBarButtonItem.h ├── RNSBarButtonItem.mm ├── RNSConvert.h ├── RNSConvert.mm ├── RNSEnums.h ├── RNSFullWindowOverlay.h ├── RNSFullWindowOverlay.mm ├── RNSInvalidatedComponentsRegistry.h ├── RNSInvalidatedComponentsRegistry.mm ├── RNSModalScreen.h ├── RNSModalScreen.mm ├── RNSModule.h ├── RNSModule.mm ├── RNSOrientationProviding.h ├── RNSPercentDrivenInteractiveTransition.h ├── RNSPercentDrivenInteractiveTransition.mm ├── RNSScreen.h ├── RNSScreen.mm ├── RNSScreenContainer.h ├── RNSScreenContainer.mm ├── RNSScreenContentWrapper.h ├── RNSScreenContentWrapper.mm ├── RNSScreenFooter.h ├── RNSScreenFooter.mm ├── RNSScreenNavigationContainer.h ├── RNSScreenNavigationContainer.mm ├── RNSScreenStack.h ├── RNSScreenStack.mm ├── RNSScreenStackAnimator.h ├── RNSScreenStackAnimator.mm ├── RNSScreenStackHeaderConfig.h ├── RNSScreenStackHeaderConfig.mm ├── RNSScreenStackHeaderSubview.h ├── RNSScreenStackHeaderSubview.mm ├── RNSScreenWindowTraits.h ├── RNSScreenWindowTraits.mm ├── RNSScrollViewBehaviorOverriding.h ├── RNSSearchBar.h ├── RNSSearchBar.mm ├── RNSViewControllerInvalidating.h ├── RNSViewControllerInvalidator.h ├── RNSViewControllerInvalidator.mm ├── RNScreens-Bridging-Header.h ├── RNScreens.xcodeproj │ └── project.pbxproj ├── UIScrollView+RNScreens.h ├── UIScrollView+RNScreens.mm ├── UIViewController+RNScreens.h ├── UIViewController+RNScreens.mm ├── UIWindow+RNScreens.h ├── UIWindow+RNScreens.mm ├── bottom-tabs │ ├── RCTConvert+RNSBottomTabs.h │ ├── RCTConvert+RNSBottomTabs.mm │ ├── RNSBottomTabsSpecialEffectsSupporting.h │ ├── RNSTabBarAppearanceCoordinator.h │ ├── RNSTabBarAppearanceCoordinator.mm │ ├── accessory │ │ ├── RNSBottomAccessoryHelper.h │ │ ├── RNSBottomAccessoryHelper.mm │ │ ├── RNSBottomTabsAccessoryComponentView.h │ │ ├── RNSBottomTabsAccessoryComponentView.mm │ │ ├── RNSBottomTabsAccessoryComponentViewManager.h │ │ ├── RNSBottomTabsAccessoryComponentViewManager.mm │ │ ├── RNSBottomTabsAccessoryContentComponentView.h │ │ ├── RNSBottomTabsAccessoryContentComponentView.mm │ │ ├── RNSBottomTabsAccessoryEventEmitter.h │ │ ├── RNSBottomTabsAccessoryEventEmitter.mm │ │ ├── RNSBottomTabsAccessoryShadowStateProxy.h │ │ └── RNSBottomTabsAccessoryShadowStateProxy.mm │ ├── extensions │ │ ├── RNSBottomTabsHostComponentView+RNSImageLoader.h │ │ └── RNSBottomTabsHostComponentView+RNSImageLoader.mm │ ├── host │ │ ├── RNSBottomTabsHostComponentView.h │ │ ├── RNSBottomTabsHostComponentView.mm │ │ ├── RNSBottomTabsHostComponentViewManager.h │ │ ├── RNSBottomTabsHostComponentViewManager.mm │ │ ├── RNSBottomTabsHostEventEmitter.h │ │ ├── RNSBottomTabsHostEventEmitter.mm │ │ ├── RNSTabBarController.h │ │ ├── RNSTabBarController.mm │ │ ├── RNSTabBarControllerDelegate.h │ │ └── RNSTabBarControllerDelegate.mm │ └── screen │ │ ├── RNSBottomTabsScreenComponentView.h │ │ ├── RNSBottomTabsScreenComponentView.mm │ │ ├── RNSBottomTabsScreenComponentViewManager.h │ │ ├── RNSBottomTabsScreenComponentViewManager.mm │ │ ├── RNSBottomTabsScreenEventEmitter.h │ │ ├── RNSBottomTabsScreenEventEmitter.mm │ │ ├── RNSTabsScreenViewController.h │ │ └── RNSTabsScreenViewController.mm ├── bridging │ ├── RNSReactBaseView.h │ ├── RNSReactBaseView.mm │ └── Swift-Bridging.h ├── conversion │ ├── RNSConversions-BottomTabs.mm │ ├── RNSConversions-Fabric.mm │ ├── RNSConversions-SplitView.mm │ ├── RNSConversions.h │ └── RNSConversions.mm ├── events │ ├── RNSHeaderHeightChangeEvent.h │ ├── RNSHeaderHeightChangeEvent.mm │ ├── RNSScreenViewEvent.h │ └── RNSScreenViewEvent.mm ├── gamma │ ├── ReactMountingTransactionObserving.swift │ ├── orientation │ │ ├── RNSOrientationProviding.swift │ │ └── RNSOrientationSwift.swift │ ├── split-view │ │ ├── RNSSplitViewAppearanceApplicator.swift │ │ ├── RNSSplitViewAppearanceCoordinator.swift │ │ ├── RNSSplitViewAppearanceUpdateFlags.swift │ │ ├── RNSSplitViewHostComponentEventEmitter.h │ │ ├── RNSSplitViewHostComponentEventEmitter.mm │ │ ├── RNSSplitViewHostComponentView.h │ │ ├── RNSSplitViewHostComponentView.mm │ │ ├── RNSSplitViewHostComponentViewManager.h │ │ ├── RNSSplitViewHostComponentViewManager.mm │ │ ├── RNSSplitViewHostController.swift │ │ ├── RNSSplitViewNavigationController.swift │ │ ├── RNSSplitViewScreenComponentEventEmitter.h │ │ ├── RNSSplitViewScreenComponentEventEmitter.mm │ │ ├── RNSSplitViewScreenComponentView.h │ │ ├── RNSSplitViewScreenComponentView.mm │ │ ├── RNSSplitViewScreenComponentViewManager.h │ │ ├── RNSSplitViewScreenComponentViewManager.mm │ │ ├── RNSSplitViewScreenController.swift │ │ ├── RNSSplitViewScreenShadowStateProxy.h │ │ └── RNSSplitViewScreenShadowStateProxy.mm │ └── stack │ │ ├── RNSScreenStackHostComponentView.h │ │ ├── RNSScreenStackHostComponentView.mm │ │ ├── RNSScreenStackHostComponentViewManager.h │ │ ├── RNSScreenStackHostComponentViewManager.mm │ │ ├── RNSStackController.swift │ │ ├── RNSStackScreenComponentEventEmitter.h │ │ ├── RNSStackScreenComponentEventEmitter.mm │ │ ├── RNSStackScreenComponentView.h │ │ ├── RNSStackScreenComponentView.mm │ │ ├── RNSStackScreenComponentViewManager.h │ │ ├── RNSStackScreenComponentViewManager.mm │ │ └── RNSStackScreenController.swift ├── helpers │ ├── RNSViewInteractionAware.h │ ├── RNSViewInteractionManager.h │ ├── RNSViewInteractionManager.mm │ ├── image │ │ ├── RNSImageLoadingHelper.h │ │ └── RNSImageLoadingHelper.mm │ └── scroll-view │ │ ├── RNSContentScrollViewProviding.h │ │ ├── RNSScrollEdgeEffectApplicator.h │ │ ├── RNSScrollEdgeEffectApplicator.mm │ │ ├── RNSScrollViewFinder.h │ │ ├── RNSScrollViewFinder.mm │ │ ├── RNSScrollViewHelper.h │ │ └── RNSScrollViewHelper.mm ├── integrations │ └── RNSDismissibleModalProtocol.h ├── safe-area │ ├── RNSSafeAreaProviding.h │ ├── RNSSafeAreaViewComponentView.h │ ├── RNSSafeAreaViewComponentView.mm │ ├── RNSSafeAreaViewNotifications.h │ └── paper │ │ ├── RNSSafeAreaViewEdges.h │ │ ├── RNSSafeAreaViewEdges.mm │ │ ├── RNSSafeAreaViewLocalData.h │ │ ├── RNSSafeAreaViewLocalData.mm │ │ ├── RNSSafeAreaViewManager.h │ │ ├── RNSSafeAreaViewManager.mm │ │ ├── RNSSafeAreaViewShadowView.h │ │ └── RNSSafeAreaViewShadowView.mm ├── stubs │ ├── RNSGammaStubs.h │ └── RNSGammaStubs.mm └── utils │ ├── NSString+RNSUtility.h │ ├── NSString+RNSUtility.mm │ ├── RCTSurfaceTouchHandler+RNSUtility.h │ ├── RCTSurfaceTouchHandler+RNSUtility.mm │ ├── RCTTouchHandler+RNSUtility.h │ ├── RCTTouchHandler+RNSUtility.mm │ ├── RNSBackBarButtonItem.h │ ├── RNSBackBarButtonItem.mm │ ├── RNSDefines.h │ ├── RNSLog.h │ ├── UINavigationBar+RNSUtility.h │ ├── UINavigationBar+RNSUtility.mm │ ├── UIView+RNSUtility.h │ ├── UIView+RNSUtility.mm │ └── extensions │ └── RCTImageSource+AccessHiddenMembers.h ├── jest.config.js ├── package.json ├── private └── package.json ├── react-native.config.js ├── reanimated └── package.json ├── scripts ├── codegen-check-consistency.js ├── codegen-sync-archs.js ├── codegen-utils.js ├── create-npm-package.sh ├── e2e │ ├── android-devices.js │ ├── command-line-helpers.js │ ├── detox-utils.cjs │ └── ios-devices.js ├── format-android.js ├── ios │ ├── rns_set_swift_compilation_flags.rb │ └── rns_update_info_plist.rb ├── releasing.js ├── set-version.js └── swift-format-helper.sh ├── src ├── TransitionProgressContext.tsx ├── components │ ├── DebugContainer.tsx │ ├── DebugContainer.web.tsx │ ├── FullWindowOverlay.tsx │ ├── FullWindowOverlay.web.tsx │ ├── Screen.tsx │ ├── Screen.web.tsx │ ├── ScreenContainer.tsx │ ├── ScreenContainer.web.tsx │ ├── ScreenContentWrapper.tsx │ ├── ScreenContentWrapper.web.tsx │ ├── ScreenContentWrapper.windows.tsx │ ├── ScreenFooter.tsx │ ├── ScreenFooter.web.tsx │ ├── ScreenFooter.windows.tsx │ ├── ScreenStack.tsx │ ├── ScreenStack.web.tsx │ ├── ScreenStackHeaderConfig.tsx │ ├── ScreenStackHeaderConfig.web.tsx │ ├── ScreenStackItem.tsx │ ├── SearchBar.tsx │ ├── SearchBar.web.tsx │ ├── bottom-tabs │ │ ├── BottomTabs.tsx │ │ ├── BottomTabs.types.ts │ │ ├── BottomTabs.web.tsx │ │ ├── BottomTabsAccessory.tsx │ │ ├── BottomTabsAccessory.types.ts │ │ ├── BottomTabsAccessoryContent.tsx │ │ ├── BottomTabsAccessoryContent.types.ts │ │ ├── BottomTabsScreen.tsx │ │ ├── BottomTabsScreen.types.ts │ │ └── BottomTabsScreen.web.tsx │ ├── gamma │ │ ├── split-view │ │ │ ├── SplitViewHost.android.tsx │ │ │ ├── SplitViewHost.tsx │ │ │ ├── SplitViewHost.types.ts │ │ │ ├── SplitViewHost.web.tsx │ │ │ ├── SplitViewScreen.android.tsx │ │ │ ├── SplitViewScreen.tsx │ │ │ ├── SplitViewScreen.types.ts │ │ │ └── SplitViewScreen.web.tsx │ │ └── stack │ │ │ ├── ScreenStackHost.tsx │ │ │ ├── ScreenStackHost.types.ts │ │ │ ├── ScreenStackHost.web.tsx │ │ │ ├── StackScreen.tsx │ │ │ ├── StackScreen.types.ts │ │ │ └── StackScreen.web.tsx │ ├── helpers │ │ ├── DelayedFreeze.tsx │ │ ├── prepareHeaderBarButtonItems.ts │ │ ├── sheet.tsx │ │ └── usePrevious.tsx │ ├── safe-area │ │ ├── SafeAreaView.tsx │ │ ├── SafeAreaView.types.ts │ │ └── SafeAreaView.web.tsx │ └── shared │ │ └── types.ts ├── contexts.tsx ├── core.ts ├── experimental │ ├── index.ts │ └── types.ts ├── fabric │ ├── FullWindowOverlayNativeComponent.ts │ ├── ModalScreenNativeComponent.ts │ ├── NativeScreensModule.ts │ ├── NativeScreensModule.web.ts │ ├── ScreenContainerNativeComponent.ts │ ├── ScreenContentWrapperNativeComponent.ts │ ├── ScreenFooterNativeComponent.ts │ ├── ScreenNativeComponent.ts │ ├── ScreenNavigationContainerNativeComponent.ts │ ├── ScreenStackHeaderConfigNativeComponent.ts │ ├── ScreenStackHeaderSubviewNativeComponent.ts │ ├── ScreenStackNativeComponent.ts │ ├── SearchBarNativeComponent.ts │ ├── bottom-tabs │ │ ├── BottomTabsAccessoryContentNativeComponent.ts │ │ ├── BottomTabsAccessoryNativeComponent.ts │ │ ├── BottomTabsNativeComponent.ts │ │ ├── BottomTabsScreenNativeComponent.ts │ │ └── codegenUtils.ts │ ├── gamma │ │ ├── ScreenStackHostNativeComponent.ts │ │ ├── SplitViewHostNativeComponent.ts │ │ ├── SplitViewScreenNativeComponent.ts │ │ └── StackScreenNativeComponent.ts │ └── safe-area │ │ └── SafeAreaViewNativeComponent.ts ├── flags.ts ├── gesture-handler │ ├── GestureDetectorProvider.tsx │ ├── RNScreensTurboModule.ts │ ├── ScreenGestureDetector.tsx │ ├── constraints.ts │ ├── defaults.ts │ ├── fabricUtils.ts │ ├── fabricUtils.web.ts │ └── index.tsx ├── index.tsx ├── private │ ├── index.ts │ ├── logging.ts │ └── types.ts ├── reanimated │ ├── ReanimatedHeaderHeightContext.tsx │ ├── ReanimatedNativeStackScreen.tsx │ ├── ReanimatedScreen.tsx │ ├── ReanimatedScreenProvider.tsx │ ├── ReanimatedTransitionProgressContext.tsx │ ├── index.tsx │ ├── useReanimatedHeaderHeight.tsx │ └── useReanimatedTransitionProgress.tsx ├── types.tsx ├── useTransitionProgress.tsx └── utils.ts ├── tsconfig.build.json ├── tsconfig.json ├── windows ├── .gitignore ├── README.md ├── RNScreens │ ├── ModalScreenViewManager.cpp │ ├── ModalScreenViewManager.h │ ├── PropertySheet.props │ ├── RNScreens.cpp │ ├── RNScreens.def │ ├── RNScreens.h │ ├── RNScreens.idl │ ├── RNScreens.vcxproj │ ├── RNScreens.vcxproj.filters │ ├── ReactPackageProvider.cpp │ ├── ReactPackageProvider.h │ ├── ReactPackageProvider.idl │ ├── Screen.cpp │ ├── Screen.h │ ├── ScreenContainer.cpp │ ├── ScreenContainer.h │ ├── ScreenContainerViewManager.cpp │ ├── ScreenContainerViewManager.h │ ├── ScreenStack.cpp │ ├── ScreenStack.h │ ├── ScreenStackHeaderConfig.cpp │ ├── ScreenStackHeaderConfig.h │ ├── ScreenStackHeaderConfigViewManager.cpp │ ├── ScreenStackHeaderConfigViewManager.h │ ├── ScreenStackHeaderSubview.cpp │ ├── ScreenStackHeaderSubview.h │ ├── ScreenStackHeaderSubviewViewManager.cpp │ ├── ScreenStackHeaderSubviewViewManager.h │ ├── ScreenStackViewManager.cpp │ ├── ScreenStackViewManager.h │ ├── ScreenViewManager.cpp │ ├── ScreenViewManager.h │ ├── SearchBar.cpp │ ├── SearchBar.h │ ├── SearchBarViewManager.cpp │ ├── SearchBarViewManager.h │ ├── packages.config │ ├── pch.cpp │ └── pch.h ├── RNScreens62.sln ├── RNScreens63.sln └── RNScreens65.sln └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.buckconfig -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.clang-format -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # specific for windows script files 2 | *.bat text eol=crlf 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: software-mansion 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue_template.md: -------------------------------------------------------------------------------- 1 | ## Description 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/android-build-test-fabric.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.github/workflows/android-build-test-fabric.yml -------------------------------------------------------------------------------- /.github/workflows/android-build-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.github/workflows/android-build-test.yml -------------------------------------------------------------------------------- /.github/workflows/android-e2e-test-fabric.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.github/workflows/android-e2e-test-fabric.yml -------------------------------------------------------------------------------- /.github/workflows/android-e2e-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.github/workflows/android-e2e-test.yml -------------------------------------------------------------------------------- /.github/workflows/check-archs-consistency.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.github/workflows/check-archs-consistency.yml -------------------------------------------------------------------------------- /.github/workflows/close-when-stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.github/workflows/close-when-stale.yml -------------------------------------------------------------------------------- /.github/workflows/docs-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.github/workflows/docs-check.yml -------------------------------------------------------------------------------- /.github/workflows/helper/clear-annotations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.github/workflows/helper/clear-annotations.sh -------------------------------------------------------------------------------- /.github/workflows/ios-build-test-fabric.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.github/workflows/ios-build-test-fabric.yml -------------------------------------------------------------------------------- /.github/workflows/ios-build-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.github/workflows/ios-build-test.yml -------------------------------------------------------------------------------- /.github/workflows/ios-e2e-test-fabric.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.github/workflows/ios-e2e-test-fabric.yml -------------------------------------------------------------------------------- /.github/workflows/ios-e2e-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.github/workflows/ios-e2e-test.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/needs-more-info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.github/workflows/needs-more-info.yml -------------------------------------------------------------------------------- /.github/workflows/needs-repro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.github/workflows/needs-repro.yml -------------------------------------------------------------------------------- /.github/workflows/npm-screens-publish-nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.github/workflows/npm-screens-publish-nightly.yml -------------------------------------------------------------------------------- /.github/workflows/platforms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.github/workflows/platforms.yml -------------------------------------------------------------------------------- /.github/workflows/tv-os-build-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.github/workflows/tv-os-build-test.yml -------------------------------------------------------------------------------- /.github/workflows/windows-build-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.github/workflows/windows-build-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.gitmodules -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | Example/ 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v23.11.0 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.swift-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.swift-format -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.1.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.yarn/releases/yarn-4.1.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /Example/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/.bundle/config -------------------------------------------------------------------------------- /Example/.detoxrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/.detoxrc.js -------------------------------------------------------------------------------- /Example/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /Example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/.gitignore -------------------------------------------------------------------------------- /Example/.ruby-version: -------------------------------------------------------------------------------- 1 | 3.4.2 2 | -------------------------------------------------------------------------------- /Example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /Example/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/App.tsx -------------------------------------------------------------------------------- /Example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/Gemfile -------------------------------------------------------------------------------- /Example/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/Gemfile.lock -------------------------------------------------------------------------------- /Example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/android/app/build.gradle -------------------------------------------------------------------------------- /Example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/android/app/debug.keystore -------------------------------------------------------------------------------- /Example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /Example/android/app/rns-example-keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/android/app/rns-example-keystore.jks -------------------------------------------------------------------------------- /Example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/android/build.gradle -------------------------------------------------------------------------------- /Example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/android/gradle.properties -------------------------------------------------------------------------------- /Example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/android/gradlew -------------------------------------------------------------------------------- /Example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/android/gradlew.bat -------------------------------------------------------------------------------- /Example/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/android/keystores/BUCK -------------------------------------------------------------------------------- /Example/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /Example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/android/settings.gradle -------------------------------------------------------------------------------- /Example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/app.json -------------------------------------------------------------------------------- /Example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/babel.config.js -------------------------------------------------------------------------------- /Example/e2e/apps/test-butler-app-2.2.1.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/e2e/apps/test-butler-app-2.2.1.apk -------------------------------------------------------------------------------- /Example/e2e/examplesTests/bottomTabs.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/e2e/examplesTests/bottomTabs.e2e.ts -------------------------------------------------------------------------------- /Example/e2e/examplesTests/events.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/e2e/examplesTests/events.e2e.ts -------------------------------------------------------------------------------- /Example/e2e/examplesTests/simpleNativeStack.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/e2e/examplesTests/simpleNativeStack.e2e.ts -------------------------------------------------------------------------------- /Example/e2e/examplesTests/stackPresentation.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/e2e/examplesTests/stackPresentation.e2e.ts -------------------------------------------------------------------------------- /Example/e2e/firstTest.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/e2e/firstTest.e2e.ts -------------------------------------------------------------------------------- /Example/e2e/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/e2e/jest.config.js -------------------------------------------------------------------------------- /Example/e2e/jest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/e2e/jest.setup.ts -------------------------------------------------------------------------------- /Example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/index.js -------------------------------------------------------------------------------- /Example/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/ios/.xcode.env -------------------------------------------------------------------------------- /Example/ios/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/ios/AppDelegate.swift -------------------------------------------------------------------------------- /Example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/ios/Podfile -------------------------------------------------------------------------------- /Example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/ios/Podfile.lock -------------------------------------------------------------------------------- /Example/ios/ReactNativeDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/ios/ReactNativeDelegate.swift -------------------------------------------------------------------------------- /Example/ios/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/ios/SceneDelegate.swift -------------------------------------------------------------------------------- /Example/ios/ScreensExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/ios/ScreensExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ios/ScreensExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/ios/ScreensExample/Info.plist -------------------------------------------------------------------------------- /Example/ios/ScreensExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/ios/ScreensExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/ios/ScreensExample/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/ios/ScreensExample/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Example/ios/ScreensExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/ios/ScreensExampleTests/Info.plist -------------------------------------------------------------------------------- /Example/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /Example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/metro.config.js -------------------------------------------------------------------------------- /Example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/package.json -------------------------------------------------------------------------------- /Example/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /Example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/Example/yarn.lock -------------------------------------------------------------------------------- /FabricExample/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/.bundle/config -------------------------------------------------------------------------------- /FabricExample/.detoxrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/.detoxrc.js -------------------------------------------------------------------------------- /FabricExample/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /FabricExample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/.gitignore -------------------------------------------------------------------------------- /FabricExample/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /FabricExample/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/App.tsx -------------------------------------------------------------------------------- /FabricExample/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/Gemfile -------------------------------------------------------------------------------- /FabricExample/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/Gemfile.lock -------------------------------------------------------------------------------- /FabricExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/README.md -------------------------------------------------------------------------------- /FabricExample/__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/__tests__/App.test.tsx -------------------------------------------------------------------------------- /FabricExample/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/android/app/build.gradle -------------------------------------------------------------------------------- /FabricExample/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/android/app/debug.keystore -------------------------------------------------------------------------------- /FabricExample/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /FabricExample/android/app/rns-example-keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/android/app/rns-example-keystore.jks -------------------------------------------------------------------------------- /FabricExample/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/android/build.gradle -------------------------------------------------------------------------------- /FabricExample/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/android/gradle.properties -------------------------------------------------------------------------------- /FabricExample/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/android/gradlew -------------------------------------------------------------------------------- /FabricExample/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/android/gradlew.bat -------------------------------------------------------------------------------- /FabricExample/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/android/settings.gradle -------------------------------------------------------------------------------- /FabricExample/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/app.json -------------------------------------------------------------------------------- /FabricExample/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/babel.config.js -------------------------------------------------------------------------------- /FabricExample/e2e/e2e-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/e2e/e2e-utils.ts -------------------------------------------------------------------------------- /FabricExample/e2e/examplesTests/bottomTabs.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/e2e/examplesTests/bottomTabs.e2e.ts -------------------------------------------------------------------------------- /FabricExample/e2e/examplesTests/events.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/e2e/examplesTests/events.e2e.ts -------------------------------------------------------------------------------- /FabricExample/e2e/firstTest.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/e2e/firstTest.e2e.ts -------------------------------------------------------------------------------- /FabricExample/e2e/issuesTests/Test2543.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/e2e/issuesTests/Test2543.e2e.ts -------------------------------------------------------------------------------- /FabricExample/e2e/issuesTests/Test2809.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/e2e/issuesTests/Test2809.e2e.ts -------------------------------------------------------------------------------- /FabricExample/e2e/issuesTests/Test2842.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/e2e/issuesTests/Test2842.e2e.ts -------------------------------------------------------------------------------- /FabricExample/e2e/issuesTests/Test2877.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/e2e/issuesTests/Test2877.e2e.ts -------------------------------------------------------------------------------- /FabricExample/e2e/issuesTests/Test2926.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/e2e/issuesTests/Test2926.e2e.ts -------------------------------------------------------------------------------- /FabricExample/e2e/issuesTests/Test2963.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/e2e/issuesTests/Test2963.e2e.ts -------------------------------------------------------------------------------- /FabricExample/e2e/issuesTests/Test432.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/e2e/issuesTests/Test432.e2e.ts -------------------------------------------------------------------------------- /FabricExample/e2e/issuesTests/Test528.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/e2e/issuesTests/Test528.e2e.ts -------------------------------------------------------------------------------- /FabricExample/e2e/issuesTests/Test577.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/e2e/issuesTests/Test577.e2e.ts -------------------------------------------------------------------------------- /FabricExample/e2e/issuesTests/Test593.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/e2e/issuesTests/Test593.e2e.ts -------------------------------------------------------------------------------- /FabricExample/e2e/issuesTests/Test640.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/e2e/issuesTests/Test640.e2e.ts -------------------------------------------------------------------------------- /FabricExample/e2e/issuesTests/Test645.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/e2e/issuesTests/Test645.e2e.ts -------------------------------------------------------------------------------- /FabricExample/e2e/issuesTests/Test649.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/e2e/issuesTests/Test649.e2e.ts -------------------------------------------------------------------------------- /FabricExample/e2e/issuesTests/Test654.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/e2e/issuesTests/Test654.e2e.ts -------------------------------------------------------------------------------- /FabricExample/e2e/issuesTests/Test658.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/e2e/issuesTests/Test658.e2e.ts -------------------------------------------------------------------------------- /FabricExample/e2e/issuesTests/Test691.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/e2e/issuesTests/Test691.e2e.ts -------------------------------------------------------------------------------- /FabricExample/e2e/issuesTests/Test726.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/e2e/issuesTests/Test726.e2e.ts -------------------------------------------------------------------------------- /FabricExample/e2e/issuesTests/Test791.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/e2e/issuesTests/Test791.e2e.ts -------------------------------------------------------------------------------- /FabricExample/e2e/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/e2e/jest.config.js -------------------------------------------------------------------------------- /FabricExample/e2e/jest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/e2e/jest.setup.ts -------------------------------------------------------------------------------- /FabricExample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/index.js -------------------------------------------------------------------------------- /FabricExample/ios/.ruby-version: -------------------------------------------------------------------------------- 1 | 3.4.2 2 | -------------------------------------------------------------------------------- /FabricExample/ios/.xcode.env: -------------------------------------------------------------------------------- 1 | export NODE_BINARY=$(command -v node) 2 | -------------------------------------------------------------------------------- /FabricExample/ios/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/ios/AppDelegate.swift -------------------------------------------------------------------------------- /FabricExample/ios/FabricExample-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | /** Could not get it to build w/o this file */ 2 | -------------------------------------------------------------------------------- /FabricExample/ios/FabricExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/ios/FabricExample/Info.plist -------------------------------------------------------------------------------- /FabricExample/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/ios/Podfile -------------------------------------------------------------------------------- /FabricExample/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/ios/Podfile.lock -------------------------------------------------------------------------------- /FabricExample/ios/ReactNativeDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/ios/ReactNativeDelegate.swift -------------------------------------------------------------------------------- /FabricExample/ios/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/ios/SceneDelegate.swift -------------------------------------------------------------------------------- /FabricExample/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /FabricExample/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/metro.config.js -------------------------------------------------------------------------------- /FabricExample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/package.json -------------------------------------------------------------------------------- /FabricExample/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /FabricExample/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/FabricExample/yarn.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/LICENSE -------------------------------------------------------------------------------- /README-Fabric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/README-Fabric.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/README.md -------------------------------------------------------------------------------- /RNScreens.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/RNScreens.podspec -------------------------------------------------------------------------------- /TVOSExample/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/.bundle/config -------------------------------------------------------------------------------- /TVOSExample/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /TVOSExample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/.gitignore -------------------------------------------------------------------------------- /TVOSExample/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /TVOSExample/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/App.tsx -------------------------------------------------------------------------------- /TVOSExample/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/Gemfile -------------------------------------------------------------------------------- /TVOSExample/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/Gemfile.lock -------------------------------------------------------------------------------- /TVOSExample/__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/__tests__/App.test.tsx -------------------------------------------------------------------------------- /TVOSExample/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/android/app/build.gradle -------------------------------------------------------------------------------- /TVOSExample/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/android/app/debug.keystore -------------------------------------------------------------------------------- /TVOSExample/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /TVOSExample/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /TVOSExample/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/android/build.gradle -------------------------------------------------------------------------------- /TVOSExample/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/android/gradle.properties -------------------------------------------------------------------------------- /TVOSExample/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/android/gradlew -------------------------------------------------------------------------------- /TVOSExample/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/android/gradlew.bat -------------------------------------------------------------------------------- /TVOSExample/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/android/settings.gradle -------------------------------------------------------------------------------- /TVOSExample/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/app.json -------------------------------------------------------------------------------- /TVOSExample/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/babel.config.js -------------------------------------------------------------------------------- /TVOSExample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/index.js -------------------------------------------------------------------------------- /TVOSExample/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/ios/.xcode.env -------------------------------------------------------------------------------- /TVOSExample/ios/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/ios/AppDelegate.swift -------------------------------------------------------------------------------- /TVOSExample/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/ios/Podfile -------------------------------------------------------------------------------- /TVOSExample/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/ios/Podfile.lock -------------------------------------------------------------------------------- /TVOSExample/ios/TVOSExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/ios/TVOSExample-Bridging-Header.h -------------------------------------------------------------------------------- /TVOSExample/ios/TVOSExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/ios/TVOSExample/Info.plist -------------------------------------------------------------------------------- /TVOSExample/ios/TVOSExample/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/ios/TVOSExample/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /TVOSExample/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /TVOSExample/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/metro.config.js -------------------------------------------------------------------------------- /TVOSExample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/package.json -------------------------------------------------------------------------------- /TVOSExample/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /TVOSExample/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/TVOSExample/yarn.lock -------------------------------------------------------------------------------- /android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/android/CMakeLists.txt -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include 'lib' -------------------------------------------------------------------------------- /android/spotless.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/android/spotless.gradle -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/cpp/NativeProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/android/src/main/cpp/NativeProxy.cpp -------------------------------------------------------------------------------- /android/src/main/cpp/NativeProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/android/src/main/cpp/NativeProxy.h -------------------------------------------------------------------------------- /android/src/main/cpp/OnLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/android/src/main/cpp/OnLoad.cpp -------------------------------------------------------------------------------- /android/src/main/cpp/jni-adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/android/src/main/cpp/jni-adapter.cpp -------------------------------------------------------------------------------- /android/src/main/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/android/src/main/jni/CMakeLists.txt -------------------------------------------------------------------------------- /android/src/main/jni/rnscreens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/android/src/main/jni/rnscreens.cpp -------------------------------------------------------------------------------- /android/src/main/jni/rnscreens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/android/src/main/jni/rnscreens.h -------------------------------------------------------------------------------- /android/src/main/res/base/anim/rns_fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/android/src/main/res/base/anim/rns_fade_in.xml -------------------------------------------------------------------------------- /android/src/main/res/base/anim/rns_fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/android/src/main/res/base/anim/rns_fade_out.xml -------------------------------------------------------------------------------- /android/src/main/res/base/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/android/src/main/res/base/values/themes.xml -------------------------------------------------------------------------------- /apps/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/.eslintrc.js -------------------------------------------------------------------------------- /apps/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/App.tsx -------------------------------------------------------------------------------- /apps/Example.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/Example.tsx -------------------------------------------------------------------------------- /apps/assets/backButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/assets/backButton.png -------------------------------------------------------------------------------- /apps/assets/search_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/assets/search_black.png -------------------------------------------------------------------------------- /apps/assets/search_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/assets/search_white.png -------------------------------------------------------------------------------- /apps/assets/svg/cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/assets/svg/cart.svg -------------------------------------------------------------------------------- /apps/assets/trees.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/assets/trees.jpg -------------------------------------------------------------------------------- /apps/assets/variableIcons/icon@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/assets/variableIcons/icon@1x.png -------------------------------------------------------------------------------- /apps/assets/variableIcons/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/assets/variableIcons/icon@2x.png -------------------------------------------------------------------------------- /apps/assets/variableIcons/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/assets/variableIcons/icon@3x.png -------------------------------------------------------------------------------- /apps/assets/variableIcons/icon_fill@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/assets/variableIcons/icon_fill@1x.png -------------------------------------------------------------------------------- /apps/assets/variableIcons/icon_fill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/assets/variableIcons/icon_fill@2x.png -------------------------------------------------------------------------------- /apps/assets/variableIcons/icon_fill@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/assets/variableIcons/icon_fill@3x.png -------------------------------------------------------------------------------- /apps/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/index.ts -------------------------------------------------------------------------------- /apps/src/screens/Animations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/screens/Animations.tsx -------------------------------------------------------------------------------- /apps/src/screens/BarButtonItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/screens/BarButtonItems.tsx -------------------------------------------------------------------------------- /apps/src/screens/BottomTabsAndStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/screens/BottomTabsAndStack.tsx -------------------------------------------------------------------------------- /apps/src/screens/Events.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/screens/Events.tsx -------------------------------------------------------------------------------- /apps/src/screens/Gestures.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/screens/Gestures.tsx -------------------------------------------------------------------------------- /apps/src/screens/HeaderOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/screens/HeaderOptions.tsx -------------------------------------------------------------------------------- /apps/src/screens/Modals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/screens/Modals.tsx -------------------------------------------------------------------------------- /apps/src/screens/Orientation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/screens/Orientation.tsx -------------------------------------------------------------------------------- /apps/src/screens/PreventRemove.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/screens/PreventRemove.tsx -------------------------------------------------------------------------------- /apps/src/screens/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/screens/SearchBar.tsx -------------------------------------------------------------------------------- /apps/src/screens/SimpleNativeStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/screens/SimpleNativeStack.tsx -------------------------------------------------------------------------------- /apps/src/screens/StackPresentation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/screens/StackPresentation.tsx -------------------------------------------------------------------------------- /apps/src/screens/StatusBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/screens/StatusBar.tsx -------------------------------------------------------------------------------- /apps/src/screens/SwipeBackAnimation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/screens/SwipeBackAnimation.tsx -------------------------------------------------------------------------------- /apps/src/shared/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/shared/Alert.tsx -------------------------------------------------------------------------------- /apps/src/shared/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/shared/Button.tsx -------------------------------------------------------------------------------- /apps/src/shared/CenteredLayoutView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/shared/CenteredLayoutView.tsx -------------------------------------------------------------------------------- /apps/src/shared/Choose.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/shared/Choose.tsx -------------------------------------------------------------------------------- /apps/src/shared/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/shared/Dialog.tsx -------------------------------------------------------------------------------- /apps/src/shared/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/shared/Form.tsx -------------------------------------------------------------------------------- /apps/src/shared/ListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/shared/ListItem.tsx -------------------------------------------------------------------------------- /apps/src/shared/LongText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/shared/LongText.tsx -------------------------------------------------------------------------------- /apps/src/shared/PressableWithFeedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/shared/PressableWithFeedback.tsx -------------------------------------------------------------------------------- /apps/src/shared/Rectangle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/shared/Rectangle.tsx -------------------------------------------------------------------------------- /apps/src/shared/SettingsInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/shared/SettingsInput.tsx -------------------------------------------------------------------------------- /apps/src/shared/SettingsMultiInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/shared/SettingsMultiInput.tsx -------------------------------------------------------------------------------- /apps/src/shared/SettingsPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/shared/SettingsPicker.tsx -------------------------------------------------------------------------------- /apps/src/shared/SettingsSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/shared/SettingsSwitch.tsx -------------------------------------------------------------------------------- /apps/src/shared/Snack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/shared/Snack.tsx -------------------------------------------------------------------------------- /apps/src/shared/Spacer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/shared/Spacer.tsx -------------------------------------------------------------------------------- /apps/src/shared/Square.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/shared/Square.tsx -------------------------------------------------------------------------------- /apps/src/shared/ThemedText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/shared/ThemedText.tsx -------------------------------------------------------------------------------- /apps/src/shared/ThemedTextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/shared/ThemedTextInput.tsx -------------------------------------------------------------------------------- /apps/src/shared/ThemedView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/shared/ThemedView.tsx -------------------------------------------------------------------------------- /apps/src/shared/Toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/shared/Toast.tsx -------------------------------------------------------------------------------- /apps/src/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/shared/index.ts -------------------------------------------------------------------------------- /apps/src/shared/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/shared/styles.tsx -------------------------------------------------------------------------------- /apps/src/shared/styling/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/shared/styling/Colors.ts -------------------------------------------------------------------------------- /apps/src/tests/Test1017.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1017.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1031.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1031.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1032.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1032.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1036.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1036.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1072.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1072.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1084.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1084.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1091.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1091.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1096.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1096.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1097.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1097.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test111.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test111.js -------------------------------------------------------------------------------- /apps/src/tests/Test1153.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1153.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1157.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1157.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1162.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1162.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1166/AndroidSearchBarEvents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1166/AndroidSearchBarEvents.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1166/AndroidSearchTypes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1166/AndroidSearchTypes.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1166/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1166/index.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1188.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1188.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1190.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1190.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1198.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1198.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1204.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1204.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1209.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1209.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1213.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1213.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1214.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1214.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1227.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1227.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1228.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1228.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1259.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1259.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1260.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1260.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1296.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1296.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1299.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1299.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1391.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1391.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1419.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1419.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1463.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1463.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1473.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1473.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1476.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1476.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1509.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1509.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1539.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1539.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1645.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1645.js -------------------------------------------------------------------------------- /apps/src/tests/Test1646.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1646.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1649/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1649/components/Footer.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1649/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1649/index.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1649/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1649/routes.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1649/screens/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1649/screens/Home.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1649/screens/ModalScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1649/screens/ModalScreen.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1649/screens/Second.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1649/screens/Second.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1649/screens/SheetScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1649/screens/SheetScreen.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1649/screens/Third.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1649/screens/Third.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1649/state.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1649/state.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1649/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1649/types.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1671.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1671.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1683.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1683.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1726.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1726.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1791.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1791.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1802.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1802.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1829/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1829/index.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1829/navigation/Stacks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1829/navigation/Stacks.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1829/screens/CardView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1829/screens/CardView.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1829/screens/HomeView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1829/screens/HomeView.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1829/screens/InnerModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1829/screens/InnerModal.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1829/screens/InnerView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1829/screens/InnerView.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1829/screens/ModalView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1829/screens/ModalView.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1844.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1844.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1864.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1864.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1970.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1970.jsx -------------------------------------------------------------------------------- /apps/src/tests/Test1975.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1975.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test1981.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test1981.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2002.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2002.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2008.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2008.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2028.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2028.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2048.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2048.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2069.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2069.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2118.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2118.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2125.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2125.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2167.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2167.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2175.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2175.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2184.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2184.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2223.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2223.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2227.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2227.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2229.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2229.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2232.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2232.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2235.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2235.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2252.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2252.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2271.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2271.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2282.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2282.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2317.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2317.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2320.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2320.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2332.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2332.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2379.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2379.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2395.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2395.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2466.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2466.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2538.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2538.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2543.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2543.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2552.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2552.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2611.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2611.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test263.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test263.js -------------------------------------------------------------------------------- /apps/src/tests/Test2631.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2631.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2668.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2668.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2675.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2675.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2714.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2714.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2717.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2717.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2767.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2767.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2789.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2789.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2809/Shared.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2809/Shared.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2809/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2809/index.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2811.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2811.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2819.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2819.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2842.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2842.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2855.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2855.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2877.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2877.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2895.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2895.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2899.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2899.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2926.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2926.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2933.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2933.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2949.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2949.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test2963.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test2963.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3004.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3004.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3045.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3045.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3074.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3074.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3093.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3093.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3111.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3111.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3115.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3115.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3168.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3168.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3173.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3173.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3212/BottomTabsScenario.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3212/BottomTabsScenario.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3212/Config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3212/Config.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3212/ScrollViewTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3212/ScrollViewTemplate.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3212/StackInStackScenario.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3212/StackInStackScenario.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3212/StackScenario.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3212/StackScenario.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3212/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3212/context.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3212/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3212/index.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3236.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3236.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3239.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3239.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3248.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3248.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3265.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3265.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3271.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3271.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3282.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3282.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3288.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3288.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3336.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3336.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3342.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3342.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3346.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3346.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3369.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3369.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3379.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3379.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3422.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3422.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test3425.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test3425.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test349.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test349.js -------------------------------------------------------------------------------- /apps/src/tests/Test364.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test364.js -------------------------------------------------------------------------------- /apps/src/tests/Test42.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test42.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test432.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test432.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test528.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test528.js -------------------------------------------------------------------------------- /apps/src/tests/Test550.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test550.js -------------------------------------------------------------------------------- /apps/src/tests/Test556.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test556.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test564.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test564.js -------------------------------------------------------------------------------- /apps/src/tests/Test577.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test577.js -------------------------------------------------------------------------------- /apps/src/tests/Test593.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test593.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test619.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test619.js -------------------------------------------------------------------------------- /apps/src/tests/Test624.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test624.js -------------------------------------------------------------------------------- /apps/src/tests/Test640.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test640.js -------------------------------------------------------------------------------- /apps/src/tests/Test642.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test642.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test645.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test645.js -------------------------------------------------------------------------------- /apps/src/tests/Test648.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test648.js -------------------------------------------------------------------------------- /apps/src/tests/Test649.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test649.js -------------------------------------------------------------------------------- /apps/src/tests/Test654.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test654.js -------------------------------------------------------------------------------- /apps/src/tests/Test658.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test658.js -------------------------------------------------------------------------------- /apps/src/tests/Test662.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test662.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test691.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test691.js -------------------------------------------------------------------------------- /apps/src/tests/Test702.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test702.js -------------------------------------------------------------------------------- /apps/src/tests/Test706.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test706.js -------------------------------------------------------------------------------- /apps/src/tests/Test713.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test713.js -------------------------------------------------------------------------------- /apps/src/tests/Test726.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test726.js -------------------------------------------------------------------------------- /apps/src/tests/Test748.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test748.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test750.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test750.js -------------------------------------------------------------------------------- /apps/src/tests/Test758.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test758.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test761.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test761.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test779.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test779.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test780.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test780.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test791.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test791.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test800.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test800.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test817.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test817.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test830.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test830.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test831.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test831.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test844.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test844.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test852.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test852.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test860.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test860.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test861.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test861.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test865.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test865.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test881.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test881.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test887.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test887.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test913.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test913.tsx -------------------------------------------------------------------------------- /apps/src/tests/Test999.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/Test999.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestActivityStateProgression.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestActivityStateProgression.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestAndroidTransitions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestAndroidTransitions.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestAnimation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestAnimation.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestBottomTabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestBottomTabs/index.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestBottomTabs/tabs/Tab1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestBottomTabs/tabs/Tab1.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestBottomTabs/tabs/Tab2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestBottomTabs/tabs/Tab2.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestBottomTabs/tabs/Tab3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestBottomTabs/tabs/Tab3.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestBottomTabs/tabs/Tab4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestBottomTabs/tabs/Tab4.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestBottomTabs/tabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestBottomTabs/tabs/index.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestBottomTabs/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestBottomTabs/utils.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestBottomTabsOrientation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestBottomTabsOrientation.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestFormSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestFormSheet.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestFreeze.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestFreeze.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestHeader.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestHeaderHeight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestHeaderHeight.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestHeaderTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestHeaderTitle.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestMemoryLeak.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestMemoryLeak.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestModalNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestModalNavigation.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestPreload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestPreload.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestSafeAreaViewIOS/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestSafeAreaViewIOS/index.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestSafeAreaViewIOS/shared/Info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestSafeAreaViewIOS/shared/Info.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestScreenAnimation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestScreenAnimation.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestScreenAnimationV5.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestScreenAnimationV5.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestScreenStack/ScreenLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestScreenStack/ScreenLayout.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestScreenStack/helper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestScreenStack/helper.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestScreenStack/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestScreenStack/index.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestSplitView/SplitViewBaseApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestSplitView/SplitViewBaseApp.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestSplitView/SplitViewPerfApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestSplitView/SplitViewPerfApp.tsx -------------------------------------------------------------------------------- /apps/src/tests/TestSplitView/helpers/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './NativeStackNavigatorComponent' 2 | -------------------------------------------------------------------------------- /apps/src/tests/TestSplitView/helpers/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestSplitView/helpers/types.ts -------------------------------------------------------------------------------- /apps/src/tests/TestSplitView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/TestSplitView/index.tsx -------------------------------------------------------------------------------- /apps/src/tests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/src/tests/index.ts -------------------------------------------------------------------------------- /apps/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/apps/tsconfig.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/babel.config.js -------------------------------------------------------------------------------- /cpp/RNSScreenRemovalListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/cpp/RNSScreenRemovalListener.cpp -------------------------------------------------------------------------------- /cpp/RNSScreenRemovalListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/cpp/RNSScreenRemovalListener.h -------------------------------------------------------------------------------- /cpp/RNScreensTurboModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/cpp/RNScreensTurboModule.cpp -------------------------------------------------------------------------------- /cpp/RNScreensTurboModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/cpp/RNScreensTurboModule.h -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/docs/intro.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/docusaurus.config.js -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/sidebars.js -------------------------------------------------------------------------------- /docs/src/components/Downloads/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/src/components/Downloads/index.tsx -------------------------------------------------------------------------------- /docs/src/components/Downloads/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/src/components/Downloads/styles.module.css -------------------------------------------------------------------------------- /docs/src/components/FooterBackground/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/src/components/FooterBackground/index.tsx -------------------------------------------------------------------------------- /docs/src/components/Hero/ScreenSequence/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/src/components/Hero/ScreenSequence/index.tsx -------------------------------------------------------------------------------- /docs/src/components/Hero/StartScreen/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/src/components/Hero/StartScreen/index.tsx -------------------------------------------------------------------------------- /docs/src/components/HomepageButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/src/components/HomepageButton/index.tsx -------------------------------------------------------------------------------- /docs/src/components/LearnMore/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/src/components/LearnMore/index.tsx -------------------------------------------------------------------------------- /docs/src/components/LearnMore/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/src/components/LearnMore/styles.module.css -------------------------------------------------------------------------------- /docs/src/components/Overview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/src/components/Overview/index.tsx -------------------------------------------------------------------------------- /docs/src/components/Overview/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/src/components/Overview/styles.module.css -------------------------------------------------------------------------------- /docs/src/components/Sponsors/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/src/components/Sponsors/index.tsx -------------------------------------------------------------------------------- /docs/src/components/Sponsors/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/src/components/Sponsors/styles.module.css -------------------------------------------------------------------------------- /docs/src/components/Testimonials/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/src/components/Testimonials/index.tsx -------------------------------------------------------------------------------- /docs/src/components/Testimonials/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/src/components/Testimonials/styles.module.css -------------------------------------------------------------------------------- /docs/src/css/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/src/css/colors.css -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/css/overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/src/css/overrides.css -------------------------------------------------------------------------------- /docs/src/css/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/src/css/typography.css -------------------------------------------------------------------------------- /docs/src/hooks/usePageType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/src/hooks/usePageType.tsx -------------------------------------------------------------------------------- /docs/src/hooks/useScreenSize.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/src/hooks/useScreenSize.tsx -------------------------------------------------------------------------------- /docs/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/src/pages/index.js -------------------------------------------------------------------------------- /docs/src/pages/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/src/pages/styles.module.css -------------------------------------------------------------------------------- /docs/src/theme/Footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/src/theme/Footer/index.js -------------------------------------------------------------------------------- /docs/src/theme/Navbar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/src/theme/Navbar/index.js -------------------------------------------------------------------------------- /docs/src/theme/Root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/src/theme/Root.js -------------------------------------------------------------------------------- /docs/src/theme/muiTheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/src/theme/muiTheme.tsx -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/fonts/Aeonik-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/static/fonts/Aeonik-Bold.otf -------------------------------------------------------------------------------- /docs/static/fonts/Aeonik-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/static/fonts/Aeonik-Medium.otf -------------------------------------------------------------------------------- /docs/static/fonts/Aeonik-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/static/fonts/Aeonik-Regular.otf -------------------------------------------------------------------------------- /docs/static/fonts/DMMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/static/fonts/DMMono-Regular.ttf -------------------------------------------------------------------------------- /docs/static/img/arrow-right-hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/static/img/arrow-right-hero.svg -------------------------------------------------------------------------------- /docs/static/img/expo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/static/img/expo-dark.svg -------------------------------------------------------------------------------- /docs/static/img/expo-router.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/static/img/expo-router.svg -------------------------------------------------------------------------------- /docs/static/img/expo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/static/img/expo.svg -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/static/img/github.svg -------------------------------------------------------------------------------- /docs/static/img/laptop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/static/img/laptop.svg -------------------------------------------------------------------------------- /docs/static/img/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/static/img/logo-dark.svg -------------------------------------------------------------------------------- /docs/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/static/img/logo.svg -------------------------------------------------------------------------------- /docs/static/img/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/static/img/og-image.png -------------------------------------------------------------------------------- /docs/static/img/overview-customisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/static/img/overview-customisable.png -------------------------------------------------------------------------------- /docs/static/img/overview-multiplatform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/static/img/overview-multiplatform.png -------------------------------------------------------------------------------- /docs/static/img/overview-native.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/static/img/overview-native.png -------------------------------------------------------------------------------- /docs/static/img/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/static/img/phone.svg -------------------------------------------------------------------------------- /docs/static/img/react-navigation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/static/img/react-navigation.svg -------------------------------------------------------------------------------- /docs/static/img/shopify-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/static/img/shopify-dark.svg -------------------------------------------------------------------------------- /docs/static/img/shopify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/static/img/shopify.svg -------------------------------------------------------------------------------- /docs/static/img/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/static/img/tv.svg -------------------------------------------------------------------------------- /docs/static/img/vr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/static/img/vr.svg -------------------------------------------------------------------------------- /docs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/docs/yarn.lock -------------------------------------------------------------------------------- /experimental/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/experimental/package.json -------------------------------------------------------------------------------- /gesture-handler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/gesture-handler/package.json -------------------------------------------------------------------------------- /guides/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/guides/CONTRIBUTING.md -------------------------------------------------------------------------------- /guides/GUIDE_FOR_LIBRARY_AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/guides/GUIDE_FOR_LIBRARY_AUTHORS.md -------------------------------------------------------------------------------- /guides/android_studio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/guides/android_studio.png -------------------------------------------------------------------------------- /guides/xcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/guides/xcode.png -------------------------------------------------------------------------------- /ios/RCTConvert+RNScreens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RCTConvert+RNScreens.h -------------------------------------------------------------------------------- /ios/RCTConvert+RNScreens.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RCTConvert+RNScreens.mm -------------------------------------------------------------------------------- /ios/RNSBarButtonItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSBarButtonItem.h -------------------------------------------------------------------------------- /ios/RNSBarButtonItem.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSBarButtonItem.mm -------------------------------------------------------------------------------- /ios/RNSConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSConvert.h -------------------------------------------------------------------------------- /ios/RNSConvert.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSConvert.mm -------------------------------------------------------------------------------- /ios/RNSEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSEnums.h -------------------------------------------------------------------------------- /ios/RNSFullWindowOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSFullWindowOverlay.h -------------------------------------------------------------------------------- /ios/RNSFullWindowOverlay.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSFullWindowOverlay.mm -------------------------------------------------------------------------------- /ios/RNSInvalidatedComponentsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSInvalidatedComponentsRegistry.h -------------------------------------------------------------------------------- /ios/RNSInvalidatedComponentsRegistry.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSInvalidatedComponentsRegistry.mm -------------------------------------------------------------------------------- /ios/RNSModalScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSModalScreen.h -------------------------------------------------------------------------------- /ios/RNSModalScreen.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSModalScreen.mm -------------------------------------------------------------------------------- /ios/RNSModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSModule.h -------------------------------------------------------------------------------- /ios/RNSModule.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSModule.mm -------------------------------------------------------------------------------- /ios/RNSOrientationProviding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSOrientationProviding.h -------------------------------------------------------------------------------- /ios/RNSPercentDrivenInteractiveTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSPercentDrivenInteractiveTransition.h -------------------------------------------------------------------------------- /ios/RNSPercentDrivenInteractiveTransition.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSPercentDrivenInteractiveTransition.mm -------------------------------------------------------------------------------- /ios/RNSScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSScreen.h -------------------------------------------------------------------------------- /ios/RNSScreen.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSScreen.mm -------------------------------------------------------------------------------- /ios/RNSScreenContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSScreenContainer.h -------------------------------------------------------------------------------- /ios/RNSScreenContainer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSScreenContainer.mm -------------------------------------------------------------------------------- /ios/RNSScreenContentWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSScreenContentWrapper.h -------------------------------------------------------------------------------- /ios/RNSScreenContentWrapper.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSScreenContentWrapper.mm -------------------------------------------------------------------------------- /ios/RNSScreenFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSScreenFooter.h -------------------------------------------------------------------------------- /ios/RNSScreenFooter.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSScreenFooter.mm -------------------------------------------------------------------------------- /ios/RNSScreenNavigationContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSScreenNavigationContainer.h -------------------------------------------------------------------------------- /ios/RNSScreenNavigationContainer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSScreenNavigationContainer.mm -------------------------------------------------------------------------------- /ios/RNSScreenStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSScreenStack.h -------------------------------------------------------------------------------- /ios/RNSScreenStack.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSScreenStack.mm -------------------------------------------------------------------------------- /ios/RNSScreenStackAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSScreenStackAnimator.h -------------------------------------------------------------------------------- /ios/RNSScreenStackAnimator.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSScreenStackAnimator.mm -------------------------------------------------------------------------------- /ios/RNSScreenStackHeaderConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSScreenStackHeaderConfig.h -------------------------------------------------------------------------------- /ios/RNSScreenStackHeaderConfig.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSScreenStackHeaderConfig.mm -------------------------------------------------------------------------------- /ios/RNSScreenStackHeaderSubview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSScreenStackHeaderSubview.h -------------------------------------------------------------------------------- /ios/RNSScreenStackHeaderSubview.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSScreenStackHeaderSubview.mm -------------------------------------------------------------------------------- /ios/RNSScreenWindowTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSScreenWindowTraits.h -------------------------------------------------------------------------------- /ios/RNSScreenWindowTraits.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSScreenWindowTraits.mm -------------------------------------------------------------------------------- /ios/RNSScrollViewBehaviorOverriding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSScrollViewBehaviorOverriding.h -------------------------------------------------------------------------------- /ios/RNSSearchBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSSearchBar.h -------------------------------------------------------------------------------- /ios/RNSSearchBar.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSSearchBar.mm -------------------------------------------------------------------------------- /ios/RNSViewControllerInvalidating.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSViewControllerInvalidating.h -------------------------------------------------------------------------------- /ios/RNSViewControllerInvalidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSViewControllerInvalidator.h -------------------------------------------------------------------------------- /ios/RNSViewControllerInvalidator.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNSViewControllerInvalidator.mm -------------------------------------------------------------------------------- /ios/RNScreens-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNScreens-Bridging-Header.h -------------------------------------------------------------------------------- /ios/RNScreens.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/RNScreens.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/UIScrollView+RNScreens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/UIScrollView+RNScreens.h -------------------------------------------------------------------------------- /ios/UIScrollView+RNScreens.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/UIScrollView+RNScreens.mm -------------------------------------------------------------------------------- /ios/UIViewController+RNScreens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/UIViewController+RNScreens.h -------------------------------------------------------------------------------- /ios/UIViewController+RNScreens.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/UIViewController+RNScreens.mm -------------------------------------------------------------------------------- /ios/UIWindow+RNScreens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/UIWindow+RNScreens.h -------------------------------------------------------------------------------- /ios/UIWindow+RNScreens.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/UIWindow+RNScreens.mm -------------------------------------------------------------------------------- /ios/bottom-tabs/RCTConvert+RNSBottomTabs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/bottom-tabs/RCTConvert+RNSBottomTabs.h -------------------------------------------------------------------------------- /ios/bottom-tabs/RCTConvert+RNSBottomTabs.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/bottom-tabs/RCTConvert+RNSBottomTabs.mm -------------------------------------------------------------------------------- /ios/bottom-tabs/RNSTabBarAppearanceCoordinator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/bottom-tabs/RNSTabBarAppearanceCoordinator.h -------------------------------------------------------------------------------- /ios/bottom-tabs/RNSTabBarAppearanceCoordinator.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/bottom-tabs/RNSTabBarAppearanceCoordinator.mm -------------------------------------------------------------------------------- /ios/bottom-tabs/host/RNSTabBarController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/bottom-tabs/host/RNSTabBarController.h -------------------------------------------------------------------------------- /ios/bottom-tabs/host/RNSTabBarController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/bottom-tabs/host/RNSTabBarController.mm -------------------------------------------------------------------------------- /ios/bottom-tabs/host/RNSTabBarControllerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/bottom-tabs/host/RNSTabBarControllerDelegate.h -------------------------------------------------------------------------------- /ios/bridging/RNSReactBaseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/bridging/RNSReactBaseView.h -------------------------------------------------------------------------------- /ios/bridging/RNSReactBaseView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/bridging/RNSReactBaseView.mm -------------------------------------------------------------------------------- /ios/bridging/Swift-Bridging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/bridging/Swift-Bridging.h -------------------------------------------------------------------------------- /ios/conversion/RNSConversions-BottomTabs.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/conversion/RNSConversions-BottomTabs.mm -------------------------------------------------------------------------------- /ios/conversion/RNSConversions-Fabric.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/conversion/RNSConversions-Fabric.mm -------------------------------------------------------------------------------- /ios/conversion/RNSConversions-SplitView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/conversion/RNSConversions-SplitView.mm -------------------------------------------------------------------------------- /ios/conversion/RNSConversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/conversion/RNSConversions.h -------------------------------------------------------------------------------- /ios/conversion/RNSConversions.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/conversion/RNSConversions.mm -------------------------------------------------------------------------------- /ios/events/RNSHeaderHeightChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/events/RNSHeaderHeightChangeEvent.h -------------------------------------------------------------------------------- /ios/events/RNSHeaderHeightChangeEvent.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/events/RNSHeaderHeightChangeEvent.mm -------------------------------------------------------------------------------- /ios/events/RNSScreenViewEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/events/RNSScreenViewEvent.h -------------------------------------------------------------------------------- /ios/events/RNSScreenViewEvent.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/events/RNSScreenViewEvent.mm -------------------------------------------------------------------------------- /ios/gamma/ReactMountingTransactionObserving.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/gamma/ReactMountingTransactionObserving.swift -------------------------------------------------------------------------------- /ios/gamma/orientation/RNSOrientationSwift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/gamma/orientation/RNSOrientationSwift.swift -------------------------------------------------------------------------------- /ios/gamma/stack/RNSScreenStackHostComponentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/gamma/stack/RNSScreenStackHostComponentView.h -------------------------------------------------------------------------------- /ios/gamma/stack/RNSScreenStackHostComponentView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/gamma/stack/RNSScreenStackHostComponentView.mm -------------------------------------------------------------------------------- /ios/gamma/stack/RNSStackController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/gamma/stack/RNSStackController.swift -------------------------------------------------------------------------------- /ios/gamma/stack/RNSStackScreenComponentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/gamma/stack/RNSStackScreenComponentView.h -------------------------------------------------------------------------------- /ios/gamma/stack/RNSStackScreenComponentView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/gamma/stack/RNSStackScreenComponentView.mm -------------------------------------------------------------------------------- /ios/gamma/stack/RNSStackScreenController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/gamma/stack/RNSStackScreenController.swift -------------------------------------------------------------------------------- /ios/helpers/RNSViewInteractionAware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/helpers/RNSViewInteractionAware.h -------------------------------------------------------------------------------- /ios/helpers/RNSViewInteractionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/helpers/RNSViewInteractionManager.h -------------------------------------------------------------------------------- /ios/helpers/RNSViewInteractionManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/helpers/RNSViewInteractionManager.mm -------------------------------------------------------------------------------- /ios/helpers/image/RNSImageLoadingHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/helpers/image/RNSImageLoadingHelper.h -------------------------------------------------------------------------------- /ios/helpers/image/RNSImageLoadingHelper.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/helpers/image/RNSImageLoadingHelper.mm -------------------------------------------------------------------------------- /ios/helpers/scroll-view/RNSScrollViewFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/helpers/scroll-view/RNSScrollViewFinder.h -------------------------------------------------------------------------------- /ios/helpers/scroll-view/RNSScrollViewFinder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/helpers/scroll-view/RNSScrollViewFinder.mm -------------------------------------------------------------------------------- /ios/helpers/scroll-view/RNSScrollViewHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/helpers/scroll-view/RNSScrollViewHelper.h -------------------------------------------------------------------------------- /ios/helpers/scroll-view/RNSScrollViewHelper.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/helpers/scroll-view/RNSScrollViewHelper.mm -------------------------------------------------------------------------------- /ios/integrations/RNSDismissibleModalProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/integrations/RNSDismissibleModalProtocol.h -------------------------------------------------------------------------------- /ios/safe-area/RNSSafeAreaProviding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/safe-area/RNSSafeAreaProviding.h -------------------------------------------------------------------------------- /ios/safe-area/RNSSafeAreaViewComponentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/safe-area/RNSSafeAreaViewComponentView.h -------------------------------------------------------------------------------- /ios/safe-area/RNSSafeAreaViewComponentView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/safe-area/RNSSafeAreaViewComponentView.mm -------------------------------------------------------------------------------- /ios/safe-area/RNSSafeAreaViewNotifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/safe-area/RNSSafeAreaViewNotifications.h -------------------------------------------------------------------------------- /ios/safe-area/paper/RNSSafeAreaViewEdges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/safe-area/paper/RNSSafeAreaViewEdges.h -------------------------------------------------------------------------------- /ios/safe-area/paper/RNSSafeAreaViewEdges.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/safe-area/paper/RNSSafeAreaViewEdges.mm -------------------------------------------------------------------------------- /ios/safe-area/paper/RNSSafeAreaViewLocalData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/safe-area/paper/RNSSafeAreaViewLocalData.h -------------------------------------------------------------------------------- /ios/safe-area/paper/RNSSafeAreaViewLocalData.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/safe-area/paper/RNSSafeAreaViewLocalData.mm -------------------------------------------------------------------------------- /ios/safe-area/paper/RNSSafeAreaViewManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/safe-area/paper/RNSSafeAreaViewManager.h -------------------------------------------------------------------------------- /ios/safe-area/paper/RNSSafeAreaViewManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/safe-area/paper/RNSSafeAreaViewManager.mm -------------------------------------------------------------------------------- /ios/safe-area/paper/RNSSafeAreaViewShadowView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/safe-area/paper/RNSSafeAreaViewShadowView.h -------------------------------------------------------------------------------- /ios/safe-area/paper/RNSSafeAreaViewShadowView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/safe-area/paper/RNSSafeAreaViewShadowView.mm -------------------------------------------------------------------------------- /ios/stubs/RNSGammaStubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/stubs/RNSGammaStubs.h -------------------------------------------------------------------------------- /ios/stubs/RNSGammaStubs.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/stubs/RNSGammaStubs.mm -------------------------------------------------------------------------------- /ios/utils/NSString+RNSUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/utils/NSString+RNSUtility.h -------------------------------------------------------------------------------- /ios/utils/NSString+RNSUtility.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/utils/NSString+RNSUtility.mm -------------------------------------------------------------------------------- /ios/utils/RCTSurfaceTouchHandler+RNSUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/utils/RCTSurfaceTouchHandler+RNSUtility.h -------------------------------------------------------------------------------- /ios/utils/RCTSurfaceTouchHandler+RNSUtility.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/utils/RCTSurfaceTouchHandler+RNSUtility.mm -------------------------------------------------------------------------------- /ios/utils/RCTTouchHandler+RNSUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/utils/RCTTouchHandler+RNSUtility.h -------------------------------------------------------------------------------- /ios/utils/RCTTouchHandler+RNSUtility.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/utils/RCTTouchHandler+RNSUtility.mm -------------------------------------------------------------------------------- /ios/utils/RNSBackBarButtonItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/utils/RNSBackBarButtonItem.h -------------------------------------------------------------------------------- /ios/utils/RNSBackBarButtonItem.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/utils/RNSBackBarButtonItem.mm -------------------------------------------------------------------------------- /ios/utils/RNSDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/utils/RNSDefines.h -------------------------------------------------------------------------------- /ios/utils/RNSLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/utils/RNSLog.h -------------------------------------------------------------------------------- /ios/utils/UINavigationBar+RNSUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/utils/UINavigationBar+RNSUtility.h -------------------------------------------------------------------------------- /ios/utils/UINavigationBar+RNSUtility.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/utils/UINavigationBar+RNSUtility.mm -------------------------------------------------------------------------------- /ios/utils/UIView+RNSUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/utils/UIView+RNSUtility.h -------------------------------------------------------------------------------- /ios/utils/UIView+RNSUtility.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/ios/utils/UIView+RNSUtility.mm -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/package.json -------------------------------------------------------------------------------- /private/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/private/package.json -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/react-native.config.js -------------------------------------------------------------------------------- /reanimated/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/reanimated/package.json -------------------------------------------------------------------------------- /scripts/codegen-check-consistency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/scripts/codegen-check-consistency.js -------------------------------------------------------------------------------- /scripts/codegen-sync-archs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/scripts/codegen-sync-archs.js -------------------------------------------------------------------------------- /scripts/codegen-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/scripts/codegen-utils.js -------------------------------------------------------------------------------- /scripts/create-npm-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/scripts/create-npm-package.sh -------------------------------------------------------------------------------- /scripts/e2e/android-devices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/scripts/e2e/android-devices.js -------------------------------------------------------------------------------- /scripts/e2e/command-line-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/scripts/e2e/command-line-helpers.js -------------------------------------------------------------------------------- /scripts/e2e/detox-utils.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/scripts/e2e/detox-utils.cjs -------------------------------------------------------------------------------- /scripts/e2e/ios-devices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/scripts/e2e/ios-devices.js -------------------------------------------------------------------------------- /scripts/format-android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/scripts/format-android.js -------------------------------------------------------------------------------- /scripts/ios/rns_set_swift_compilation_flags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/scripts/ios/rns_set_swift_compilation_flags.rb -------------------------------------------------------------------------------- /scripts/ios/rns_update_info_plist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/scripts/ios/rns_update_info_plist.rb -------------------------------------------------------------------------------- /scripts/releasing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/scripts/releasing.js -------------------------------------------------------------------------------- /scripts/set-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/scripts/set-version.js -------------------------------------------------------------------------------- /scripts/swift-format-helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/scripts/swift-format-helper.sh -------------------------------------------------------------------------------- /src/TransitionProgressContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/TransitionProgressContext.tsx -------------------------------------------------------------------------------- /src/components/DebugContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/DebugContainer.tsx -------------------------------------------------------------------------------- /src/components/DebugContainer.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/DebugContainer.web.tsx -------------------------------------------------------------------------------- /src/components/FullWindowOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/FullWindowOverlay.tsx -------------------------------------------------------------------------------- /src/components/FullWindowOverlay.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/FullWindowOverlay.web.tsx -------------------------------------------------------------------------------- /src/components/Screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/Screen.tsx -------------------------------------------------------------------------------- /src/components/Screen.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/Screen.web.tsx -------------------------------------------------------------------------------- /src/components/ScreenContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/ScreenContainer.tsx -------------------------------------------------------------------------------- /src/components/ScreenContainer.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/ScreenContainer.web.tsx -------------------------------------------------------------------------------- /src/components/ScreenContentWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/ScreenContentWrapper.tsx -------------------------------------------------------------------------------- /src/components/ScreenContentWrapper.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/ScreenContentWrapper.web.tsx -------------------------------------------------------------------------------- /src/components/ScreenContentWrapper.windows.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/ScreenContentWrapper.windows.tsx -------------------------------------------------------------------------------- /src/components/ScreenFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/ScreenFooter.tsx -------------------------------------------------------------------------------- /src/components/ScreenFooter.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/ScreenFooter.web.tsx -------------------------------------------------------------------------------- /src/components/ScreenFooter.windows.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/ScreenFooter.windows.tsx -------------------------------------------------------------------------------- /src/components/ScreenStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/ScreenStack.tsx -------------------------------------------------------------------------------- /src/components/ScreenStack.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/ScreenStack.web.tsx -------------------------------------------------------------------------------- /src/components/ScreenStackHeaderConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/ScreenStackHeaderConfig.tsx -------------------------------------------------------------------------------- /src/components/ScreenStackHeaderConfig.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/ScreenStackHeaderConfig.web.tsx -------------------------------------------------------------------------------- /src/components/ScreenStackItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/ScreenStackItem.tsx -------------------------------------------------------------------------------- /src/components/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/SearchBar.tsx -------------------------------------------------------------------------------- /src/components/SearchBar.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/SearchBar.web.tsx -------------------------------------------------------------------------------- /src/components/bottom-tabs/BottomTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/bottom-tabs/BottomTabs.tsx -------------------------------------------------------------------------------- /src/components/bottom-tabs/BottomTabs.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/bottom-tabs/BottomTabs.types.ts -------------------------------------------------------------------------------- /src/components/bottom-tabs/BottomTabs.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/bottom-tabs/BottomTabs.web.tsx -------------------------------------------------------------------------------- /src/components/bottom-tabs/BottomTabsAccessory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/bottom-tabs/BottomTabsAccessory.tsx -------------------------------------------------------------------------------- /src/components/bottom-tabs/BottomTabsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/bottom-tabs/BottomTabsScreen.tsx -------------------------------------------------------------------------------- /src/components/gamma/split-view/SplitViewHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/gamma/split-view/SplitViewHost.tsx -------------------------------------------------------------------------------- /src/components/gamma/stack/ScreenStackHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/gamma/stack/ScreenStackHost.tsx -------------------------------------------------------------------------------- /src/components/gamma/stack/ScreenStackHost.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/gamma/stack/ScreenStackHost.web.tsx -------------------------------------------------------------------------------- /src/components/gamma/stack/StackScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/gamma/stack/StackScreen.tsx -------------------------------------------------------------------------------- /src/components/gamma/stack/StackScreen.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/gamma/stack/StackScreen.types.ts -------------------------------------------------------------------------------- /src/components/gamma/stack/StackScreen.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/gamma/stack/StackScreen.web.tsx -------------------------------------------------------------------------------- /src/components/helpers/DelayedFreeze.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/helpers/DelayedFreeze.tsx -------------------------------------------------------------------------------- /src/components/helpers/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/helpers/sheet.tsx -------------------------------------------------------------------------------- /src/components/helpers/usePrevious.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/helpers/usePrevious.tsx -------------------------------------------------------------------------------- /src/components/safe-area/SafeAreaView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/safe-area/SafeAreaView.tsx -------------------------------------------------------------------------------- /src/components/safe-area/SafeAreaView.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/safe-area/SafeAreaView.types.ts -------------------------------------------------------------------------------- /src/components/safe-area/SafeAreaView.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/safe-area/SafeAreaView.web.tsx -------------------------------------------------------------------------------- /src/components/shared/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/components/shared/types.ts -------------------------------------------------------------------------------- /src/contexts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/contexts.tsx -------------------------------------------------------------------------------- /src/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/core.ts -------------------------------------------------------------------------------- /src/experimental/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/experimental/index.ts -------------------------------------------------------------------------------- /src/experimental/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/experimental/types.ts -------------------------------------------------------------------------------- /src/fabric/FullWindowOverlayNativeComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/fabric/FullWindowOverlayNativeComponent.ts -------------------------------------------------------------------------------- /src/fabric/ModalScreenNativeComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/fabric/ModalScreenNativeComponent.ts -------------------------------------------------------------------------------- /src/fabric/NativeScreensModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/fabric/NativeScreensModule.ts -------------------------------------------------------------------------------- /src/fabric/NativeScreensModule.web.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /src/fabric/ScreenContainerNativeComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/fabric/ScreenContainerNativeComponent.ts -------------------------------------------------------------------------------- /src/fabric/ScreenContentWrapperNativeComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/fabric/ScreenContentWrapperNativeComponent.ts -------------------------------------------------------------------------------- /src/fabric/ScreenFooterNativeComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/fabric/ScreenFooterNativeComponent.ts -------------------------------------------------------------------------------- /src/fabric/ScreenNativeComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/fabric/ScreenNativeComponent.ts -------------------------------------------------------------------------------- /src/fabric/ScreenStackNativeComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/fabric/ScreenStackNativeComponent.ts -------------------------------------------------------------------------------- /src/fabric/SearchBarNativeComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/fabric/SearchBarNativeComponent.ts -------------------------------------------------------------------------------- /src/fabric/bottom-tabs/codegenUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/fabric/bottom-tabs/codegenUtils.ts -------------------------------------------------------------------------------- /src/fabric/gamma/ScreenStackHostNativeComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/fabric/gamma/ScreenStackHostNativeComponent.ts -------------------------------------------------------------------------------- /src/fabric/gamma/SplitViewHostNativeComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/fabric/gamma/SplitViewHostNativeComponent.ts -------------------------------------------------------------------------------- /src/fabric/gamma/SplitViewScreenNativeComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/fabric/gamma/SplitViewScreenNativeComponent.ts -------------------------------------------------------------------------------- /src/fabric/gamma/StackScreenNativeComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/fabric/gamma/StackScreenNativeComponent.ts -------------------------------------------------------------------------------- /src/flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/flags.ts -------------------------------------------------------------------------------- /src/gesture-handler/GestureDetectorProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/gesture-handler/GestureDetectorProvider.tsx -------------------------------------------------------------------------------- /src/gesture-handler/RNScreensTurboModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/gesture-handler/RNScreensTurboModule.ts -------------------------------------------------------------------------------- /src/gesture-handler/ScreenGestureDetector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/gesture-handler/ScreenGestureDetector.tsx -------------------------------------------------------------------------------- /src/gesture-handler/constraints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/gesture-handler/constraints.ts -------------------------------------------------------------------------------- /src/gesture-handler/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/gesture-handler/defaults.ts -------------------------------------------------------------------------------- /src/gesture-handler/fabricUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/gesture-handler/fabricUtils.ts -------------------------------------------------------------------------------- /src/gesture-handler/fabricUtils.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/gesture-handler/fabricUtils.web.ts -------------------------------------------------------------------------------- /src/gesture-handler/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/gesture-handler/index.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/private/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/private/index.ts -------------------------------------------------------------------------------- /src/private/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/private/logging.ts -------------------------------------------------------------------------------- /src/private/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/private/types.ts -------------------------------------------------------------------------------- /src/reanimated/ReanimatedHeaderHeightContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/reanimated/ReanimatedHeaderHeightContext.tsx -------------------------------------------------------------------------------- /src/reanimated/ReanimatedNativeStackScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/reanimated/ReanimatedNativeStackScreen.tsx -------------------------------------------------------------------------------- /src/reanimated/ReanimatedScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/reanimated/ReanimatedScreen.tsx -------------------------------------------------------------------------------- /src/reanimated/ReanimatedScreenProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/reanimated/ReanimatedScreenProvider.tsx -------------------------------------------------------------------------------- /src/reanimated/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/reanimated/index.tsx -------------------------------------------------------------------------------- /src/reanimated/useReanimatedHeaderHeight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/reanimated/useReanimatedHeaderHeight.tsx -------------------------------------------------------------------------------- /src/reanimated/useReanimatedTransitionProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/reanimated/useReanimatedTransitionProgress.tsx -------------------------------------------------------------------------------- /src/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/types.tsx -------------------------------------------------------------------------------- /src/useTransitionProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/useTransitionProgress.tsx -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/tsconfig.json -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/README.md -------------------------------------------------------------------------------- /windows/RNScreens/ModalScreenViewManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/ModalScreenViewManager.cpp -------------------------------------------------------------------------------- /windows/RNScreens/ModalScreenViewManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/ModalScreenViewManager.h -------------------------------------------------------------------------------- /windows/RNScreens/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/PropertySheet.props -------------------------------------------------------------------------------- /windows/RNScreens/RNScreens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/RNScreens.cpp -------------------------------------------------------------------------------- /windows/RNScreens/RNScreens.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/RNScreens.def -------------------------------------------------------------------------------- /windows/RNScreens/RNScreens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/RNScreens.h -------------------------------------------------------------------------------- /windows/RNScreens/RNScreens.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/RNScreens.idl -------------------------------------------------------------------------------- /windows/RNScreens/RNScreens.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/RNScreens.vcxproj -------------------------------------------------------------------------------- /windows/RNScreens/RNScreens.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/RNScreens.vcxproj.filters -------------------------------------------------------------------------------- /windows/RNScreens/ReactPackageProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/ReactPackageProvider.cpp -------------------------------------------------------------------------------- /windows/RNScreens/ReactPackageProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/ReactPackageProvider.h -------------------------------------------------------------------------------- /windows/RNScreens/ReactPackageProvider.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/ReactPackageProvider.idl -------------------------------------------------------------------------------- /windows/RNScreens/Screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/Screen.cpp -------------------------------------------------------------------------------- /windows/RNScreens/Screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/Screen.h -------------------------------------------------------------------------------- /windows/RNScreens/ScreenContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/ScreenContainer.cpp -------------------------------------------------------------------------------- /windows/RNScreens/ScreenContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/ScreenContainer.h -------------------------------------------------------------------------------- /windows/RNScreens/ScreenContainerViewManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/ScreenContainerViewManager.cpp -------------------------------------------------------------------------------- /windows/RNScreens/ScreenContainerViewManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/ScreenContainerViewManager.h -------------------------------------------------------------------------------- /windows/RNScreens/ScreenStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/ScreenStack.cpp -------------------------------------------------------------------------------- /windows/RNScreens/ScreenStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/ScreenStack.h -------------------------------------------------------------------------------- /windows/RNScreens/ScreenStackHeaderConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/ScreenStackHeaderConfig.cpp -------------------------------------------------------------------------------- /windows/RNScreens/ScreenStackHeaderConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/ScreenStackHeaderConfig.h -------------------------------------------------------------------------------- /windows/RNScreens/ScreenStackHeaderSubview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/ScreenStackHeaderSubview.cpp -------------------------------------------------------------------------------- /windows/RNScreens/ScreenStackHeaderSubview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/ScreenStackHeaderSubview.h -------------------------------------------------------------------------------- /windows/RNScreens/ScreenStackViewManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/ScreenStackViewManager.cpp -------------------------------------------------------------------------------- /windows/RNScreens/ScreenStackViewManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/ScreenStackViewManager.h -------------------------------------------------------------------------------- /windows/RNScreens/ScreenViewManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/ScreenViewManager.cpp -------------------------------------------------------------------------------- /windows/RNScreens/ScreenViewManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/ScreenViewManager.h -------------------------------------------------------------------------------- /windows/RNScreens/SearchBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/SearchBar.cpp -------------------------------------------------------------------------------- /windows/RNScreens/SearchBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/SearchBar.h -------------------------------------------------------------------------------- /windows/RNScreens/SearchBarViewManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/SearchBarViewManager.cpp -------------------------------------------------------------------------------- /windows/RNScreens/SearchBarViewManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/SearchBarViewManager.h -------------------------------------------------------------------------------- /windows/RNScreens/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/packages.config -------------------------------------------------------------------------------- /windows/RNScreens/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /windows/RNScreens/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens/pch.h -------------------------------------------------------------------------------- /windows/RNScreens62.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens62.sln -------------------------------------------------------------------------------- /windows/RNScreens63.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens63.sln -------------------------------------------------------------------------------- /windows/RNScreens65.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/windows/RNScreens65.sln -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-screens/HEAD/yarn.lock --------------------------------------------------------------------------------