rnn-codebase

star 13.2k

Navigate and work with the react-native-navigation (RNN) codebase. Use when fixing bugs, adding features, tracing command flows, understanding options resolution, or working across JS/iOS/Android layers in this repo.

wix By wix schedule Updated 3/15/2026

name: rnn-codebase description: Navigate and work with the react-native-navigation (RNN) codebase. Use when fixing bugs, adding features, tracing command flows, understanding options resolution, or working across JS/iOS/Android layers in this repo.

React Native Navigation Codebase

Architecture Overview

RNN has three layers that mirror each other:

JS/TS (src/)  →  TurboModule bridge  →  iOS native (ios/)
                                     →  Android native (android/)

A navigation command (e.g. push) flows:

  1. Navigation.push()Commands.ts → processing pipeline → NativeCommandsSender.ts
  2. TurboModule: RNNTurboModule (iOS) / NavigationTurboModule.kt (Android)
  3. iOS: RNNCommandsHandlerRNNViewControllerFactory → UIKit controllers
  4. Android: NavigatorLayoutFactory → View-based controllers (no Fragments)

Read ARCHITECTURE.md for the full overview.

Key Cross-Layer Mappings

Layout Types → Native Controllers

JS Layout Type iOS Controller Android Controller
component RNNComponentViewController ComponentViewController
stack RNNStackController (UINavigationController) StackController
bottomTabs RNNBottomTabsController (UITabBarController) BottomTabsController
sideMenu RNNSideMenuViewController (MMDrawerController) SideMenuController (DrawerLayout)
topTabs RNNTopTabsViewController TopTabsController (ViewPager)
splitView RNNSplitViewController N/A (iOS only)
externalComponent RNNExternalViewController ExternalComponentViewController

Options → Presenters

Each controller type has a Presenter that applies options to views:

iOS Controller iOS Presenter Android Presenter
RNNComponentViewController RNNComponentPresenter ComponentPresenter
RNNStackController RNNStackPresenter + TopBarPresenter StackPresenter
RNNBottomTabsController RNNBottomTabsPresenter BottomTabsPresenter
RNNSideMenuViewController RNNSideMenuPresenter SideMenuPresenter

Events (same names both platforms)

Event Trigger
RNN.ComponentDidAppear Screen becomes visible
RNN.ComponentDidDisappear Screen hidden
RNN.NavigationButtonPressed TopBar button tap
RNN.BottomTabSelected Tab changed
RNN.ModalDismissed Modal dismissed
RNN.ScreenPopped Screen popped from stack
RNN.CommandCompleted Any command finished

Where to Find Things

By task: "I need to fix/change X"

Task JS File(s) iOS File(s) Android File(s)
Command execution src/commands/Commands.ts ios/RNNCommandsHandler.mm react/NavigationTurboModule.kt
Layout creation src/commands/LayoutTreeParser.ts ios/RNNViewControllerFactory.mm options/LayoutFactory.java
Options processing src/commands/OptionsProcessor.ts ios/RNNNavigationOptions.mm options/Options.java
Options application ios/*Presenter.mm viewcontrollers/*Presenter.java
TopBar src/interfaces/Options.ts (TopBarOptions) ios/TopBarPresenter.mm, ios/RNNUIBarButtonItem.mm views/stack/topbar/
Bottom tabs src/interfaces/Options.ts (BottomTabsOptions) ios/RNNBottomTabsPresenter.mm viewcontrollers/bottomtabs/
Modals src/commands/Commands.ts ios/RNNModalManager.mm viewcontrollers/modal/ModalStack.java
Overlays src/commands/Commands.ts ios/RNNOverlayManager.mm viewcontrollers/overlay/OverlayManager.kt
Animations src/interfaces/Options.ts (AnimationOptions) ios/ScreenAnimationController.mm viewcontrollers/stack/StackAnimator.kt
React view rendering ios/RNNReactView.mm react/ReactView.java
Events to JS src/adapters/NativeEventsReceiver.ts ios/RNNEventEmitter.mm react/events/EventEmitter.java
Component registration src/components/ComponentRegistry.ts

By directory

  • src/ — JS public API, commands, processing pipeline. See src/ARCHITECTURE.md
  • ios/ — All Obj-C/C++ native code. See ios/ARCHITECTURE.md
  • ios/TurboModules/ — New architecture entry points (RNNTurboModule, RNNTurboManager, RNNTurboCommandsHandler)
  • android/src/main/java/com/reactnativenavigation/ — All Java/Kotlin native code. See android/ARCHITECTURE.md
  • playground/ — Demo app for development and E2E tests
  • playground/src/screens/ — Test screens exercising every feature
  • playground/e2e/ — Detox E2E tests

Options Resolution Order

Options are applied in ascending priority:

  1. Default options (from Navigation.setDefaultOptions()) — lowest priority
  2. Static options (from component class or Navigation.registerComponent)
  3. Options passed in the layout call (e.g. push, setRoot)
  4. mergeOptions() — runtime override, highest priority

JS Processing Pipeline (exact order)

API layout → OptionsCrawler.crawl() → LayoutProcessor.process()
  → LayoutTreeParser.parse() → LayoutTreeCrawler.crawl()
  → OptionsProcessor (colors, assets, custom) → NativeCommandsSender

iOS Patterns

  • All controllers conform to RNNLayoutProtocol
  • RNNBasePresenter subclasses apply options — applyOptionsOnInit:, applyOptions:, mergeOptions:resolvedOptions:
  • Commands run on main thread (RCTExecuteOnMainQueue)
  • React views: RNNReactView wraps RCTSurfaceHostingView (new arch)
  • Overlays use separate UIWindow instances (RNNOverlayWindow)
  • RNNReactComponentRegistry caches React component instances

Android Patterns

  • View-based, NOT Fragment-based
  • All commands dispatched via UiThread.post()
  • ViewController<T extends ViewGroup> is the base — createView() is abstract
  • ParentController extends ChildController extends ViewController
  • Bottom tabs use AHBottomNavigation library
  • Three root layouts in NavigationActivity: rootLayout, modalsLayout, overlaysLayout
  • Tab attachment modes: Together, OnSwitchToTab, AfterInitialTab

Development Workflow

Playground app

  • yarn start — Metro bundler
  • yarn xcode — Open iOS project
  • yarn studio — Open Android project
  • yarn pod-install — Install iOS pods

Testing

  • yarn test-js — Jest unit tests
  • yarn test-unit-ios — iOS native unit tests (XCTest)
  • yarn test-unit-android — Android native unit tests (JUnit + Robolectric)
  • yarn test-e2e-ios-ci / yarn test-e2e-android-ci — Detox E2E tests

Building

  • yarn prepare — Builds src/lib/ (ESM + types)
  • Codegen config: rnnavigation in package.json

Engine Integration (Wix One App)

RNN is a standalone library but also a core dependency of mobile-apps-engine (the Wix One App platform). Changes to RNN's public API surface can break engine.

Version Management

  • Version pinned in two files (must match):
    • packages/native/mobile-apps-engine-native/package.json
    • packages/wix-one-app-storage/package.json
  • yarn.config.cjs has a constraint that reads the version from mobile-apps-engine-native and validates all workspaces use the same version. It's a validation rule — bumping the native package.json is sufficient.

iOS Integration

  • Engine's AppDelegate subclasses RNNAppDelegate — breaking changes to that class will break engine.
  • Podfile resolves ReactNativeNavigation pod from node_modules.
  • Xcode project has header search paths pointing into node_modules/react-native-navigation/ios/**.

Android Integration

  • Engine's EngineRN.kt extends NavigationApplication and uses NavigationPackage / NavigationReactNativeHost.
  • missingDimensionStrategy "RNN.reactNativeVersion" is set in app/build.gradle — may need updating if RNN changes its flavor dimensions.
  • Build variables RNNKotlinVersion, RNNKotlinStdlib, RNNKotlinCoroutinesCore are forwarded from engine's Kotlin config.

Active Patches (in engine's setup)

  • OptionsProcessor.js — engine replaces RNN's OptionsProcessor.js at setup time via patchRNNOptionsProcessor() in packages/cli/mobile-apps-engine-setup/src/index.js. The patched copy lives at packages/cli/mobile-apps-engine-setup/etc/OptionsProcessor.js. It adds:
    • Custom iOS color processing with DynamicColorIOS (dark/light/dynamic object shapes)
    • Custom Android color processing wrapping colors in {dark, light} objects with semantic/resource_paths support
    • Component ID uses value.name instead of uniqueIdProvider.generate()
  • Any changes to src/commands/OptionsProcessor.ts require checking if the engine patch needs updating.

JS Wrappers

Engine wraps RNN's Navigation API in several services:

  • Navigator.ts — root layout, overlays, error screens, tab navigation
  • BottomTabsBackHandler.ts — back handling on bottom tabs via Navigation.events()
  • TabsManager.ts — tab management using RNN Layout types
  • Various other services import Layout, LayoutRoot, LayoutSideMenu, OptionsSideMenu from RNN

Upgrade Checklist

  1. Bump version in both package.json files
  2. Verify OptionsProcessor.js patch still applies (diff upstream changes)
  3. Check RNNAppDelegate API compatibility (iOS)
  4. Check NavigationApplication / NavigationPackage / NavigationReactNativeHost API compatibility (Android)
  5. Verify missingDimensionStrategy value is still valid
  6. Check react-native-navigation-hooks and rnn-copilot compatibility
  7. Run yarn install to update lockfile
  8. Verify test mocks (react-native-navigation/Mock) still work

Common Gotchas

  • iOS uses UIKit subclasses (UINavigationController, UITabBarController); Android uses custom View hierarchy
  • splitView is iOS-only
  • Side menu: iOS uses MMDrawerController (3rd party); Android uses DrawerLayout (native)
  • Options that exist in JS types may not be implemented on both platforms — check the presenter
  • passProps are stored in JS Store, not sent to native (cleared before bridge crossing)
  • The lib/ folder is generated — never edit it, edit src/ instead
Install via CLI
npx skills add https://github.com/wix/react-native-navigation --skill rnn-codebase
Repository Details
star Stars 13,184
call_split Forks 2,643
navigation Branch main
article Path SKILL.md
More from Creator