├── .babelrc ├── .buckconfig ├── .buckjavaargs ├── .bundle └── config ├── .circleci ├── README.md ├── config.yml ├── configurations │ ├── commands.yml │ ├── executors.yml │ ├── jobs.yml │ ├── test_workflows │ │ ├── testAll.yml │ │ ├── testAndroid.yml │ │ ├── testE2E.yml │ │ ├── testIOS.yml │ │ └── testJS.yml │ ├── top_level.yml │ └── workflows.yml └── verdaccio.yml ├── .clang-format ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .flowconfig ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── new_architecture_bug_report.yml │ └── upgrade_regression_form.yml ├── PULL_REQUEST_TEMPLATE.md ├── RELEASE_TEMPLATE.md ├── SUPPORT.md ├── workflow-scripts │ ├── actOnLabel.js │ ├── addDescriptiveLabels.js │ ├── checkForReproducer.js │ └── verifyVersion.js └── workflows │ ├── apply-version-label-issue.yml │ ├── autorebase.yml │ ├── check-for-reproducer.yml │ ├── close_pr.yml │ ├── danger_pr.yml │ ├── ios-tests.yml │ ├── needs-attention.yml │ ├── on-issue-labeled.yml │ ├── run_e2e_tests.yml │ └── stale-bot.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CHANGELOG-pre-060.md ├── CHANGELOG-pre-070.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ECOSYSTEM.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── LICENSE-docs ├── README.md ├── flow-typed └── npm │ ├── @isaacs │ └── ttlcache_1.x.x.js │ ├── @react-native-community │ ├── cli-server-api_v12.x.x.js │ ├── cli-tools_v12.x.x.js │ └── cli-types_v12.x.x.js │ ├── @rnx-kit │ └── chromium-edge-launcher_v1.x.x.js │ ├── @tsconfig │ └── node18_v1.x.x.js │ ├── actual-request-url_v1.x.x.js │ ├── ansi-regex_v5.x.x.js │ ├── babel-traverse_v7.x.x.js │ ├── babel-types_v7.x.x.js │ ├── babel_v7.x.x.js │ ├── base64-js_v1.x.x.js │ ├── chalk_v4.x.x.js │ ├── chrome-launcher_v0.15.x.js │ ├── connect_v3.x.x.js │ ├── data-uri-to-buffer_v6.x.x.js │ ├── debug_v2.x.x.js │ ├── execa_v5.x.x.js │ ├── glob_v7.x.x.js │ ├── node-fetch_v2.x.x.js │ ├── open_v7.x.x.js │ ├── parseargs_v0.11.x.js │ ├── pretty-format_v26.x.x.js │ ├── promise_v8.x.x.js │ ├── react-dom_v17.x.x.js │ ├── react-test-renderer_v16.x.x.js │ ├── selfsigned_v2.x.x.js │ ├── serve-static_v1.x.x.js │ ├── stacktrace-parser_v0.1.x.js │ ├── temp-dir_2.x.x.js │ ├── typescript_v5.x.x.js │ ├── undici_v5.x.x.js │ ├── wait-for-expect_v3.x.x.js │ ├── ws_v7.x.x.js │ └── yargs_v17.x.x.js ├── gradle.properties ├── gradle ├── gradle-enterprise.gradle.kts.sample └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── jest.config.js ├── jest └── preprocessor.js ├── package.json ├── packages ├── assets │ ├── .npmignore │ ├── README.md │ ├── __tests__ │ │ └── path-support-test.js │ ├── package.json │ ├── path-support.js │ └── registry.js ├── babel-plugin-codegen │ ├── README.md │ ├── __test_fixtures__ │ │ ├── failures.js │ │ └── fixtures.js │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── index-test.js.snap │ │ └── index-test.js │ ├── index.js │ └── package.json ├── community-cli-plugin │ ├── .gitignore │ ├── README.md │ ├── index.js.flow │ ├── package.json │ └── src │ │ ├── commands │ │ ├── bundle │ │ │ ├── __mocks__ │ │ │ │ └── sign.js │ │ │ ├── __tests__ │ │ │ │ ├── filterPlatformAssetScales-test.js │ │ │ │ ├── getAssetDestPathAndroid-test.js │ │ │ │ └── getAssetDestPathIOS-test.js │ │ │ ├── assetCatalogIOS.js │ │ │ ├── assetPathUtils.js │ │ │ ├── buildBundle.js │ │ │ ├── filterPlatformAssetScales.js │ │ │ ├── getAssetDestPathAndroid.js │ │ │ ├── getAssetDestPathIOS.js │ │ │ ├── index.js │ │ │ └── saveAssets.js │ │ ├── ram-bundle │ │ │ └── index.js │ │ └── start │ │ │ ├── attachKeyHandlers.js │ │ │ ├── index.js │ │ │ └── runServer.js │ │ ├── index.flow.js │ │ ├── index.js │ │ └── utils │ │ ├── KeyPressHandler.js │ │ ├── isDevServerRunning.js │ │ ├── loadMetroConfig.js │ │ └── metroPlatformResolver.js ├── debugger-frontend │ ├── BUILD_INFO │ ├── README.md │ ├── dist │ │ └── third-party │ │ │ ├── LICENSE │ │ │ └── front_end │ │ │ ├── Images │ │ │ ├── 3d-center.svg │ │ │ ├── 3d-pan.svg │ │ │ ├── 3d-rotate.svg │ │ │ ├── Images.js │ │ │ ├── accelerometer-back.svg │ │ │ ├── accelerometer-bottom.png │ │ │ ├── accelerometer-front.svg │ │ │ ├── accelerometer-left.png │ │ │ ├── accelerometer-right.png │ │ │ ├── accelerometer-top.png │ │ │ ├── align-content-center.svg │ │ │ ├── align-content-end.svg │ │ │ ├── align-content-space-around.svg │ │ │ ├── align-content-space-between.svg │ │ │ ├── align-content-space-evenly.svg │ │ │ ├── align-content-start.svg │ │ │ ├── align-content-stretch.svg │ │ │ ├── align-items-baseline.svg │ │ │ ├── align-items-center.svg │ │ │ ├── align-items-end.svg │ │ │ ├── align-items-start.svg │ │ │ ├── align-items-stretch.svg │ │ │ ├── align-self-center.svg │ │ │ ├── align-self-end.svg │ │ │ ├── align-self-start.svg │ │ │ ├── align-self-stretch.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-drop-down-dark.svg │ │ │ ├── arrow-drop-down-light.svg │ │ │ ├── arrow-up-down-circle.svg │ │ │ ├── arrow-up-down.svg │ │ │ ├── arrow-up.svg │ │ │ ├── bell.svg │ │ │ ├── bezier-curve-filled.svg │ │ │ ├── bin.svg │ │ │ ├── bottom-panel-close.svg │ │ │ ├── bottom-panel-open.svg │ │ │ ├── brackets.svg │ │ │ ├── breakpoint-circle.svg │ │ │ ├── breakpoint-crossed-filled.svg │ │ │ ├── breakpoint-crossed.svg │ │ │ ├── brush-filled.svg │ │ │ ├── brush.svg │ │ │ ├── bug.svg │ │ │ ├── bundle.svg │ │ │ ├── check-circle.svg │ │ │ ├── check-double.svg │ │ │ ├── checker.svg │ │ │ ├── checkmark.svg │ │ │ ├── chevron-double-right.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left-dot.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up.svg │ │ │ ├── chromeLeft.avif │ │ │ ├── chromeMiddle.avif │ │ │ ├── chromeRight.avif │ │ │ ├── clear-list.svg │ │ │ ├── clear.svg │ │ │ ├── cloud.svg │ │ │ ├── code-circle.svg │ │ │ ├── code.svg │ │ │ ├── colon.svg │ │ │ ├── color-picker-filled.svg │ │ │ ├── color-picker.svg │ │ │ ├── console-conditional-breakpoint.svg │ │ │ ├── console-logpoint.svg │ │ │ ├── cookie.svg │ │ │ ├── copy.svg │ │ │ ├── credit-card.svg │ │ │ ├── cross-circle-filled.svg │ │ │ ├── cross-circle.svg │ │ │ ├── cross.svg │ │ │ ├── cssoverview_icons_2x.avif │ │ │ ├── custom-typography.svg │ │ │ ├── database.svg │ │ │ ├── deployed.svg │ │ │ ├── device-fold.svg │ │ │ ├── devices.svg │ │ │ ├── dock-bottom.svg │ │ │ ├── dock-left.svg │ │ │ ├── dock-right.svg │ │ │ ├── dock-window.svg │ │ │ ├── document.svg │ │ │ ├── dots-horizontal.svg │ │ │ ├── dots-vertical.svg │ │ │ ├── download.svg │ │ │ ├── edit.svg │ │ │ ├── empty.svg │ │ │ ├── errorWave.svg │ │ │ ├── exclamation.svg │ │ │ ├── experiment-check.svg │ │ │ ├── experiment.svg │ │ │ ├── eye.svg │ │ │ ├── favicon.ico │ │ │ ├── file-document.svg │ │ │ ├── file-font.svg │ │ │ ├── file-generic.svg │ │ │ ├── file-image.svg │ │ │ ├── file-script.svg │ │ │ ├── file-snippet.svg │ │ │ ├── file-stylesheet.svg │ │ │ ├── filter-clear.svg │ │ │ ├── filter-filled.svg │ │ │ ├── filter.svg │ │ │ ├── flex-direction.svg │ │ │ ├── flex-no-wrap.svg │ │ │ ├── flex-wrap.svg │ │ │ ├── flow.svg │ │ │ ├── fold-more.svg │ │ │ ├── folder.svg │ │ │ ├── frame-crossed.svg │ │ │ ├── frame-icon.svg │ │ │ ├── frame.svg │ │ │ ├── gear-filled.svg │ │ │ ├── gear.svg │ │ │ ├── gears.svg │ │ │ ├── heap-snapshot.svg │ │ │ ├── heap-snapshots.svg │ │ │ ├── help.svg │ │ │ ├── iframe-crossed.svg │ │ │ ├── iframe.svg │ │ │ ├── import.svg │ │ │ ├── info-filled.svg │ │ │ ├── info.svg │ │ │ ├── issue-cross-filled.svg │ │ │ ├── issue-exclamation-filled.svg │ │ │ ├── issue-questionmark-filled.svg │ │ │ ├── issue-text-filled.svg │ │ │ ├── justify-content-center.svg │ │ │ ├── justify-content-end.svg │ │ │ ├── justify-content-space-around.svg │ │ │ ├── justify-content-space-between.svg │ │ │ ├── justify-content-space-evenly.svg │ │ │ ├── justify-content-start.svg │ │ │ ├── justify-items-center.svg │ │ │ ├── justify-items-end.svg │ │ │ ├── justify-items-start.svg │ │ │ ├── justify-items-stretch.svg │ │ │ ├── keyboard-pen.svg │ │ │ ├── large-arrow-right-filled.svg │ │ │ ├── largeIcons.svg │ │ │ ├── layers-filled.svg │ │ │ ├── layers.svg │ │ │ ├── left-panel-close.svg │ │ │ ├── left-panel-open.svg │ │ │ ├── lighthouse_logo.svg │ │ │ ├── list.svg │ │ │ ├── mediumIcons.svg │ │ │ ├── memory.svg │ │ │ ├── minus.svg │ │ │ ├── minus_icon.svg │ │ │ ├── navigationControls.png │ │ │ ├── navigationControls_2x.png │ │ │ ├── network-settings.svg │ │ │ ├── nodeIcon.avif │ │ │ ├── node_search_icon.svg │ │ │ ├── open-externally.svg │ │ │ ├── pause.svg │ │ │ ├── performance.svg │ │ │ ├── person.svg │ │ │ ├── play.svg │ │ │ ├── plus.svg │ │ │ ├── popoverArrows.png │ │ │ ├── popup.svg │ │ │ ├── preview_feature_video_thumbnail.svg │ │ │ ├── profile.svg │ │ │ ├── react_native │ │ │ │ └── welcomeIcon.png │ │ │ ├── record-start.svg │ │ │ ├── record-stop.svg │ │ │ ├── redo.svg │ │ │ ├── refresh.svg │ │ │ ├── replace.svg │ │ │ ├── replay.svg │ │ │ ├── resizeDiagonal.svg │ │ │ ├── resizeHorizontal.svg │ │ │ ├── resizeVertical.svg │ │ │ ├── resume.svg │ │ │ ├── review.svg │ │ │ ├── right-panel-close.svg │ │ │ ├── right-panel-open.svg │ │ │ ├── screen-rotation.svg │ │ │ ├── search.svg │ │ │ ├── securityIcons.svg │ │ │ ├── select-element.svg │ │ │ ├── settings_14x14_icon.svg │ │ │ ├── shadow.svg │ │ │ ├── smallIcons.svg │ │ │ ├── snippet.svg │ │ │ ├── star.svg │ │ │ ├── step-into.svg │ │ │ ├── step-out.svg │ │ │ ├── step-over.svg │ │ │ ├── step.svg │ │ │ ├── stop.svg │ │ │ ├── symbol.svg │ │ │ ├── sync.svg │ │ │ ├── table.svg │ │ │ ├── toolbarResizerVertical.png │ │ │ ├── top-panel-close.svg │ │ │ ├── top-panel-open.svg │ │ │ ├── touchCursor.png │ │ │ ├── touchCursor_2x.png │ │ │ ├── triangle-bottom-right.svg │ │ │ ├── triangle-down.svg │ │ │ ├── triangle-left.svg │ │ │ ├── triangle-right.svg │ │ │ ├── triangle-up.svg │ │ │ ├── undo.svg │ │ │ ├── warning-filled.svg │ │ │ ├── warning.svg │ │ │ ├── warning_icon.svg │ │ │ ├── watch.svg │ │ │ ├── whatsnew.avif │ │ │ └── width.svg │ │ │ ├── Tests.js │ │ │ ├── core │ │ │ ├── common │ │ │ │ ├── common-legacy.js │ │ │ │ └── common.js │ │ │ ├── dom_extension │ │ │ │ └── dom_extension.js │ │ │ ├── host │ │ │ │ ├── host-legacy.js │ │ │ │ └── host.js │ │ │ ├── i18n │ │ │ │ ├── i18n.js │ │ │ │ └── locales │ │ │ │ │ ├── en-US.json │ │ │ │ │ └── zh.json │ │ │ ├── platform │ │ │ │ └── platform.js │ │ │ ├── protocol_client │ │ │ │ ├── protocol_client-legacy.js │ │ │ │ └── protocol_client.js │ │ │ ├── root │ │ │ │ ├── root-legacy.js │ │ │ │ └── root.js │ │ │ └── sdk │ │ │ │ ├── sdk-legacy.js │ │ │ │ ├── sdk-meta.js │ │ │ │ └── sdk.js │ │ │ ├── device_mode_emulation_frame.html │ │ │ ├── devtools_app.html │ │ │ ├── devtools_compatibility.js │ │ │ ├── emulated_devices │ │ │ └── optimized │ │ │ │ ├── MotoG4-landscape.avif │ │ │ │ ├── MotoG4-portrait.avif │ │ │ │ ├── Nexus5X-landscape.avif │ │ │ │ ├── Nexus5X-portrait.avif │ │ │ │ ├── Nexus6P-landscape.avif │ │ │ │ ├── Nexus6P-portrait.avif │ │ │ │ ├── google-nest-hub-horizontal.avif │ │ │ │ ├── google-nest-hub-max-horizontal.avif │ │ │ │ ├── google-nexus-5-horizontal-default-1x.avif │ │ │ │ ├── google-nexus-5-horizontal-default-2x.avif │ │ │ │ ├── google-nexus-5-horizontal-keyboard-1x.avif │ │ │ │ ├── google-nexus-5-horizontal-keyboard-2x.avif │ │ │ │ ├── google-nexus-5-horizontal-navigation-1x.avif │ │ │ │ ├── google-nexus-5-horizontal-navigation-2x.avif │ │ │ │ ├── google-nexus-5-vertical-default-1x.avif │ │ │ │ ├── google-nexus-5-vertical-default-2x.avif │ │ │ │ ├── google-nexus-5-vertical-keyboard-1x.avif │ │ │ │ ├── google-nexus-5-vertical-keyboard-2x.avif │ │ │ │ ├── google-nexus-5-vertical-navigation-1x.avif │ │ │ │ ├── google-nexus-5-vertical-navigation-2x.avif │ │ │ │ ├── google-nexus-5x-horizontal-default-1x.avif │ │ │ │ ├── google-nexus-5x-horizontal-default-2x.avif │ │ │ │ ├── google-nexus-5x-horizontal-keyboard-1x.avif │ │ │ │ ├── google-nexus-5x-horizontal-keyboard-2x.avif │ │ │ │ ├── google-nexus-5x-horizontal-navigation-1x.avif │ │ │ │ ├── google-nexus-5x-horizontal-navigation-2x.avif │ │ │ │ ├── google-nexus-5x-vertical-default-1x.avif │ │ │ │ ├── google-nexus-5x-vertical-default-2x.avif │ │ │ │ ├── google-nexus-5x-vertical-keyboard-1x.avif │ │ │ │ ├── google-nexus-5x-vertical-keyboard-2x.avif │ │ │ │ ├── google-nexus-5x-vertical-navigation-1x.avif │ │ │ │ ├── google-nexus-5x-vertical-navigation-2x.avif │ │ │ │ ├── iPad-landscape.avif │ │ │ │ ├── iPad-portrait.avif │ │ │ │ ├── iPhone5-landscape.avif │ │ │ │ ├── iPhone5-portrait.avif │ │ │ │ ├── iPhone6-landscape.avif │ │ │ │ ├── iPhone6-portrait.avif │ │ │ │ ├── iPhone6Plus-landscape.avif │ │ │ │ └── iPhone6Plus-portrait.avif │ │ │ ├── entrypoints │ │ │ ├── device_mode_emulation_frame │ │ │ │ └── device_mode_emulation_frame.js │ │ │ ├── devtools_app │ │ │ │ └── devtools_app.js │ │ │ ├── formatter_worker │ │ │ │ ├── FormatterActions.js │ │ │ │ ├── formatter_worker-entrypoint.js │ │ │ │ └── formatter_worker.js │ │ │ ├── heap_snapshot_worker │ │ │ │ ├── heap_snapshot_worker-entrypoint.js │ │ │ │ ├── heap_snapshot_worker-legacy.js │ │ │ │ └── heap_snapshot_worker.js │ │ │ ├── inspector │ │ │ │ └── inspector.js │ │ │ ├── inspector_main │ │ │ │ ├── inspector_main-meta.js │ │ │ │ └── inspector_main.js │ │ │ ├── js_app │ │ │ │ └── js_app.js │ │ │ ├── lighthouse_worker │ │ │ │ └── lighthouse_worker.js │ │ │ ├── main │ │ │ │ ├── main-legacy.js │ │ │ │ ├── main-meta.js │ │ │ │ └── main.js │ │ │ ├── ndb_app │ │ │ │ └── ndb_app.js │ │ │ ├── node_app │ │ │ │ └── node_app.js │ │ │ ├── rn_inspector │ │ │ │ └── rn_inspector.js │ │ │ ├── shell │ │ │ │ └── shell.js │ │ │ ├── wasmparser_worker │ │ │ │ ├── wasmparser_worker-entrypoint.js │ │ │ │ └── wasmparser_worker.js │ │ │ └── worker_app │ │ │ │ └── worker_app.js │ │ │ ├── inspector.html │ │ │ ├── integration_test_runner.html │ │ │ ├── js_app.html │ │ │ ├── legacy_test_runner │ │ │ ├── legacy_test_runner.js │ │ │ └── test_runner │ │ │ │ └── test_runner.js │ │ │ ├── models │ │ │ ├── bindings │ │ │ │ ├── bindings-legacy.js │ │ │ │ └── bindings.js │ │ │ ├── breakpoints │ │ │ │ ├── breakpoints-legacy.js │ │ │ │ └── breakpoints.js │ │ │ ├── emulation │ │ │ │ └── emulation.js │ │ │ ├── extensions │ │ │ │ ├── extensions-legacy.js │ │ │ │ └── extensions.js │ │ │ ├── formatter │ │ │ │ ├── formatter-legacy.js │ │ │ │ └── formatter.js │ │ │ ├── har │ │ │ │ └── har.js │ │ │ ├── heap_snapshot_model │ │ │ │ ├── heap_snapshot_model-legacy.js │ │ │ │ └── heap_snapshot_model.js │ │ │ ├── issues_manager │ │ │ │ ├── descriptions │ │ │ │ │ ├── CoepCoopSandboxedIframeCannotNavigateToCoopPage.md │ │ │ │ │ ├── CoepCorpNotSameOrigin.md │ │ │ │ │ ├── CoepCorpNotSameOriginAfterDefaultedToSameOriginByCoep.md │ │ │ │ │ ├── CoepCorpNotSameSite.md │ │ │ │ │ ├── CoepFrameResourceNeedsCoepHeader.md │ │ │ │ │ ├── CompatibilityModeQuirks.md │ │ │ │ │ ├── CookieAttributeValueExceedsMaxSize.md │ │ │ │ │ ├── LowTextContrast.md │ │ │ │ │ ├── SameSiteExcludeContextDowngradeRead.md │ │ │ │ │ ├── SameSiteExcludeContextDowngradeSet.md │ │ │ │ │ ├── SameSiteExcludeNavigationContextDowngrade.md │ │ │ │ │ ├── SameSiteInvalidSameParty.md │ │ │ │ │ ├── SameSiteNoneInsecureErrorRead.md │ │ │ │ │ ├── SameSiteNoneInsecureErrorSet.md │ │ │ │ │ ├── SameSiteNoneInsecureWarnRead.md │ │ │ │ │ ├── SameSiteNoneInsecureWarnSet.md │ │ │ │ │ ├── SameSiteUnspecifiedLaxAllowUnsafeRead.md │ │ │ │ │ ├── SameSiteUnspecifiedLaxAllowUnsafeSet.md │ │ │ │ │ ├── SameSiteUnspecifiedTreatedAsLaxRead.md │ │ │ │ │ ├── SameSiteUnspecifiedTreatedAsLaxSet.md │ │ │ │ │ ├── SameSiteWarnCrossDowngradeRead.md │ │ │ │ │ ├── SameSiteWarnCrossDowngradeSet.md │ │ │ │ │ ├── SameSiteWarnStrictLaxDowngradeStrict.md │ │ │ │ │ ├── arInsecureContext.md │ │ │ │ │ ├── arInvalidRegisterOsSourceHeader.md │ │ │ │ │ ├── arInvalidRegisterOsTriggerHeader.md │ │ │ │ │ ├── arInvalidRegisterSourceHeader.md │ │ │ │ │ ├── arInvalidRegisterTriggerHeader.md │ │ │ │ │ ├── arOsSourceIgnored.md │ │ │ │ │ ├── arOsTriggerIgnored.md │ │ │ │ │ ├── arPermissionPolicyDisabled.md │ │ │ │ │ ├── arSourceAndTriggerHeaders.md │ │ │ │ │ ├── arSourceIgnored.md │ │ │ │ │ ├── arTriggerIgnored.md │ │ │ │ │ ├── arUntrustworthyReportingOrigin.md │ │ │ │ │ ├── arWebAndOsHeaders.md │ │ │ │ │ ├── bounceTrackingMitigations.md │ │ │ │ │ ├── clientHintMetaTagAllowListInvalidOrigin.md │ │ │ │ │ ├── clientHintMetaTagModifiedHTML.md │ │ │ │ │ ├── cookieExcludeBlockedWithinFirstPartySet.md │ │ │ │ │ ├── cookieExcludeDomainNonAscii.md │ │ │ │ │ ├── cookieWarnDomainNonAscii.md │ │ │ │ │ ├── corsAllowCredentialsRequired.md │ │ │ │ │ ├── corsDisabledScheme.md │ │ │ │ │ ├── corsDisallowedByMode.md │ │ │ │ │ ├── corsHeaderDisallowedByPreflightResponse.md │ │ │ │ │ ├── corsInsecurePrivateNetwork.md │ │ │ │ │ ├── corsInvalidHeaderValues.md │ │ │ │ │ ├── corsMethodDisallowedByPreflightResponse.md │ │ │ │ │ ├── corsNoCorsRedirectModeNotFollow.md │ │ │ │ │ ├── corsOriginMismatch.md │ │ │ │ │ ├── corsPreflightAllowPrivateNetworkError.md │ │ │ │ │ ├── corsPreflightResponseInvalid.md │ │ │ │ │ ├── corsRedirectContainsCredentials.md │ │ │ │ │ ├── corsWildcardOriginNotAllowed.md │ │ │ │ │ ├── cspEvalViolation.md │ │ │ │ │ ├── cspInlineViolation.md │ │ │ │ │ ├── cspTrustedTypesPolicyViolation.md │ │ │ │ │ ├── cspTrustedTypesSinkViolation.md │ │ │ │ │ ├── cspURLViolation.md │ │ │ │ │ ├── deprecation.md │ │ │ │ │ ├── federatedAuthRequestAccountsHttpNotFound.md │ │ │ │ │ ├── federatedAuthRequestAccountsInvalidResponse.md │ │ │ │ │ ├── federatedAuthRequestAccountsNoResponse.md │ │ │ │ │ ├── federatedAuthRequestApprovalDeclined.md │ │ │ │ │ ├── federatedAuthRequestCanceled.md │ │ │ │ │ ├── federatedAuthRequestClientMetadataHttpNotFound.md │ │ │ │ │ ├── federatedAuthRequestClientMetadataInvalidResponse.md │ │ │ │ │ ├── federatedAuthRequestClientMetadataNoResponse.md │ │ │ │ │ ├── federatedAuthRequestErrorFetchingSignin.md │ │ │ │ │ ├── federatedAuthRequestErrorIdToken.md │ │ │ │ │ ├── federatedAuthRequestIdTokenHttpNotFound.md │ │ │ │ │ ├── federatedAuthRequestIdTokenInvalidRequest.md │ │ │ │ │ ├── federatedAuthRequestIdTokenInvalidResponse.md │ │ │ │ │ ├── federatedAuthRequestIdTokenNoResponse.md │ │ │ │ │ ├── federatedAuthRequestInvalidSigninResponse.md │ │ │ │ │ ├── federatedAuthRequestManifestHttpNotFound.md │ │ │ │ │ ├── federatedAuthRequestManifestInvalidResponse.md │ │ │ │ │ ├── federatedAuthRequestManifestNoResponse.md │ │ │ │ │ ├── federatedAuthRequestTooManyRequests.md │ │ │ │ │ ├── federatedAuthUserInfoRequestInvalidAccountsResponse.md │ │ │ │ │ ├── federatedAuthUserInfoRequestInvalidConfigOrWellKnown.md │ │ │ │ │ ├── federatedAuthUserInfoRequestNoAccountSharingPermission.md │ │ │ │ │ ├── federatedAuthUserInfoRequestNoApiPermission.md │ │ │ │ │ ├── federatedAuthUserInfoRequestNoReturningUserFromFetchedAccounts.md │ │ │ │ │ ├── federatedAuthUserInfoRequestNotIframe.md │ │ │ │ │ ├── federatedAuthUserInfoRequestNotPotentiallyTrustworthy.md │ │ │ │ │ ├── federatedAuthUserInfoRequestNotSameOrigin.md │ │ │ │ │ ├── federatedAuthUserInfoRequestNotSignedInWithIdp.md │ │ │ │ │ ├── genericCrossOriginPortalPostMessageError.md │ │ │ │ │ ├── genericFormAriaLabelledByToNonExistingId.md │ │ │ │ │ ├── genericFormAutocompleteAttributeEmptyError.md │ │ │ │ │ ├── genericFormDuplicateIdForInputError.md │ │ │ │ │ ├── genericFormEmptyIdAndNameAttributesForInputError.md │ │ │ │ │ ├── genericFormInputAssignedAutocompleteValueToIdOrNameAttributeError.md │ │ │ │ │ ├── genericFormInputHasWrongButWellIntendedAutocompleteValueError.md │ │ │ │ │ ├── genericFormInputWithNoLabelError.md │ │ │ │ │ ├── genericFormLabelForMatchesNonExistingIdError.md │ │ │ │ │ ├── genericFormLabelForNameError.md │ │ │ │ │ ├── genericFormLabelHasNeitherForNorNestedInput.md │ │ │ │ │ ├── heavyAd.md │ │ │ │ │ ├── mixedContent.md │ │ │ │ │ ├── sharedArrayBuffer.md │ │ │ │ │ ├── stylesheetLateImport.md │ │ │ │ │ └── stylesheetRequestFailed.md │ │ │ │ └── issues_manager.js │ │ │ ├── javascript_metadata │ │ │ │ └── javascript_metadata.js │ │ │ ├── logs │ │ │ │ ├── logs-meta.js │ │ │ │ └── logs.js │ │ │ ├── persistence │ │ │ │ ├── persistence-legacy.js │ │ │ │ ├── persistence-meta.js │ │ │ │ └── persistence.js │ │ │ ├── source_map_scopes │ │ │ │ └── source_map_scopes.js │ │ │ ├── text_utils │ │ │ │ ├── text_utils-legacy.js │ │ │ │ └── text_utils.js │ │ │ ├── timeline_model │ │ │ │ ├── timeline_model-legacy.js │ │ │ │ └── timeline_model.js │ │ │ ├── trace │ │ │ │ ├── extras │ │ │ │ │ └── extras.js │ │ │ │ ├── handlers │ │ │ │ │ └── handlers.js │ │ │ │ ├── helpers │ │ │ │ │ └── helpers.js │ │ │ │ ├── trace.js │ │ │ │ └── types │ │ │ │ │ └── types.js │ │ │ ├── workspace │ │ │ │ ├── workspace-legacy.js │ │ │ │ └── workspace.js │ │ │ └── workspace_diff │ │ │ │ ├── workspace_diff-legacy.js │ │ │ │ └── workspace_diff.js │ │ │ ├── ndb_app.html │ │ │ ├── node_app.html │ │ │ ├── panels │ │ │ ├── accessibility │ │ │ │ ├── accessibility-legacy.js │ │ │ │ ├── accessibility-meta.js │ │ │ │ └── accessibility.js │ │ │ ├── animation │ │ │ │ ├── animation-legacy.js │ │ │ │ ├── animation-meta.js │ │ │ │ └── animation.js │ │ │ ├── application │ │ │ │ ├── application-legacy.js │ │ │ │ ├── application-meta.js │ │ │ │ ├── application.js │ │ │ │ ├── components │ │ │ │ │ └── components.js │ │ │ │ └── preloading │ │ │ │ │ └── components │ │ │ │ │ └── components.js │ │ │ ├── browser_debugger │ │ │ │ ├── browser_debugger-legacy.js │ │ │ │ ├── browser_debugger-meta.js │ │ │ │ └── browser_debugger.js │ │ │ ├── changes │ │ │ │ ├── changes-legacy.js │ │ │ │ ├── changes-meta.js │ │ │ │ └── changes.js │ │ │ ├── console │ │ │ │ ├── console-legacy.js │ │ │ │ ├── console-meta.js │ │ │ │ └── console.js │ │ │ ├── console_counters │ │ │ │ ├── console_counters-meta.js │ │ │ │ └── console_counters.js │ │ │ ├── coverage │ │ │ │ ├── coverage-legacy.js │ │ │ │ ├── coverage-meta.js │ │ │ │ └── coverage.js │ │ │ ├── css_overview │ │ │ │ ├── components │ │ │ │ │ └── components.js │ │ │ │ ├── css_overview-meta.js │ │ │ │ └── css_overview.js │ │ │ ├── developer_resources │ │ │ │ ├── developer_resources-meta.js │ │ │ │ └── developer_resources.js │ │ │ ├── elements │ │ │ │ ├── components │ │ │ │ │ └── components.js │ │ │ │ ├── elements-legacy.js │ │ │ │ ├── elements-meta.js │ │ │ │ └── elements.js │ │ │ ├── emulation │ │ │ │ ├── components │ │ │ │ │ └── components.js │ │ │ │ ├── emulation-legacy.js │ │ │ │ ├── emulation-meta.js │ │ │ │ └── emulation.js │ │ │ ├── event_listeners │ │ │ │ └── event_listeners.js │ │ │ ├── issues │ │ │ │ ├── components │ │ │ │ │ └── components.js │ │ │ │ ├── issues-meta.js │ │ │ │ └── issues.js │ │ │ ├── js_profiler │ │ │ │ ├── js_profiler-meta.js │ │ │ │ └── js_profiler.js │ │ │ ├── layer_viewer │ │ │ │ ├── layer_viewer-legacy.js │ │ │ │ ├── layer_viewer-meta.js │ │ │ │ └── layer_viewer.js │ │ │ ├── layers │ │ │ │ ├── layers-meta.js │ │ │ │ └── layers.js │ │ │ ├── lighthouse │ │ │ │ ├── lighthouse-legacy.js │ │ │ │ ├── lighthouse-meta.js │ │ │ │ └── lighthouse.js │ │ │ ├── media │ │ │ │ ├── media-meta.js │ │ │ │ └── media.js │ │ │ ├── mobile_throttling │ │ │ │ ├── mobile_throttling-legacy.js │ │ │ │ ├── mobile_throttling-meta.js │ │ │ │ └── mobile_throttling.js │ │ │ ├── network │ │ │ │ ├── components │ │ │ │ │ └── components.js │ │ │ │ ├── forward │ │ │ │ │ └── forward.js │ │ │ │ ├── network-legacy.js │ │ │ │ ├── network-meta.js │ │ │ │ └── network.js │ │ │ ├── performance_monitor │ │ │ │ ├── performance_monitor-meta.js │ │ │ │ └── performance_monitor.js │ │ │ ├── profiler │ │ │ │ ├── profiler-legacy.js │ │ │ │ ├── profiler-meta.js │ │ │ │ └── profiler.js │ │ │ ├── protocol_monitor │ │ │ │ ├── components │ │ │ │ │ └── components.js │ │ │ │ ├── protocol_monitor-meta.js │ │ │ │ └── protocol_monitor.js │ │ │ ├── recorder │ │ │ │ ├── components │ │ │ │ │ └── components.js │ │ │ │ ├── controllers │ │ │ │ │ └── controllers.js │ │ │ │ ├── converters │ │ │ │ │ └── converters.js │ │ │ │ ├── extensions │ │ │ │ │ └── extensions.js │ │ │ │ ├── injected │ │ │ │ │ ├── injected.generated.js │ │ │ │ │ └── injected.js │ │ │ │ ├── models │ │ │ │ │ └── models.js │ │ │ │ ├── recorder-actions.js │ │ │ │ ├── recorder-meta.js │ │ │ │ ├── recorder.js │ │ │ │ └── util │ │ │ │ │ └── util.js │ │ │ ├── rn_welcome │ │ │ │ ├── rn_welcome-meta.js │ │ │ │ └── rn_welcome.js │ │ │ ├── screencast │ │ │ │ ├── screencast-meta.js │ │ │ │ └── screencast.js │ │ │ ├── search │ │ │ │ ├── search-legacy.js │ │ │ │ └── search.js │ │ │ ├── security │ │ │ │ ├── security-legacy.js │ │ │ │ ├── security-meta.js │ │ │ │ └── security.js │ │ │ ├── sensors │ │ │ │ ├── sensors-meta.js │ │ │ │ └── sensors.js │ │ │ ├── settings │ │ │ │ ├── components │ │ │ │ │ └── components.js │ │ │ │ ├── emulation │ │ │ │ │ ├── components │ │ │ │ │ │ └── components.js │ │ │ │ │ ├── emulation-meta.js │ │ │ │ │ ├── emulation.js │ │ │ │ │ └── utils │ │ │ │ │ │ └── utils.js │ │ │ │ ├── settings-legacy.js │ │ │ │ ├── settings-meta.js │ │ │ │ └── settings.js │ │ │ ├── snippets │ │ │ │ ├── snippets-legacy.js │ │ │ │ └── snippets.js │ │ │ ├── sources │ │ │ │ ├── components │ │ │ │ │ └── components.js │ │ │ │ ├── sources-legacy.js │ │ │ │ ├── sources-meta.js │ │ │ │ └── sources.js │ │ │ ├── timeline │ │ │ │ ├── timeline-legacy.js │ │ │ │ ├── timeline-meta.js │ │ │ │ └── timeline.js │ │ │ ├── utils │ │ │ │ └── utils.js │ │ │ ├── web_audio │ │ │ │ ├── graph_visualizer │ │ │ │ │ └── graph_visualizer.js │ │ │ │ ├── web_audio-legacy.js │ │ │ │ ├── web_audio-meta.js │ │ │ │ └── web_audio.js │ │ │ └── webauthn │ │ │ │ ├── webauthn-meta.js │ │ │ │ └── webauthn.js │ │ │ ├── rn_inspector.html │ │ │ ├── services │ │ │ ├── puppeteer │ │ │ │ └── puppeteer.js │ │ │ ├── tracing │ │ │ │ └── tracing.js │ │ │ └── window_bounds │ │ │ │ └── window_bounds.js │ │ │ ├── third_party │ │ │ ├── acorn │ │ │ │ └── acorn.js │ │ │ ├── chromium │ │ │ │ └── client-variations │ │ │ │ │ └── client-variations.js │ │ │ ├── codemirror.next │ │ │ │ ├── chunk │ │ │ │ │ ├── angular.js │ │ │ │ │ ├── codemirror.js │ │ │ │ │ ├── cpp.js │ │ │ │ │ ├── java.js │ │ │ │ │ ├── json.js │ │ │ │ │ ├── legacy.js │ │ │ │ │ ├── less.js │ │ │ │ │ ├── markdown.js │ │ │ │ │ ├── php.js │ │ │ │ │ ├── python.js │ │ │ │ │ ├── sass.js │ │ │ │ │ ├── svelte.js │ │ │ │ │ ├── vue.js │ │ │ │ │ ├── wast.js │ │ │ │ │ └── xml.js │ │ │ │ └── codemirror.next.js │ │ │ ├── diff │ │ │ │ ├── diff-legacy.js │ │ │ │ └── diff.js │ │ │ ├── i18n │ │ │ │ └── i18n.js │ │ │ ├── intl-messageformat │ │ │ │ └── intl-messageformat.js │ │ │ ├── lighthouse │ │ │ │ ├── lighthouse-dt-bundle.js │ │ │ │ └── report │ │ │ │ │ └── report.js │ │ │ ├── lit │ │ │ │ └── lit.js │ │ │ ├── marked │ │ │ │ └── marked.js │ │ │ ├── puppeteer-replay │ │ │ │ └── puppeteer-replay.js │ │ │ ├── puppeteer │ │ │ │ └── puppeteer.js │ │ │ └── wasmparser │ │ │ │ └── wasmparser.js │ │ │ ├── ui │ │ │ ├── components │ │ │ │ ├── adorners │ │ │ │ │ └── adorners.js │ │ │ │ ├── buttons │ │ │ │ │ └── buttons.js │ │ │ │ ├── chrome_link │ │ │ │ │ └── chrome_link.js │ │ │ │ ├── code_highlighter │ │ │ │ │ └── code_highlighter.js │ │ │ │ ├── data_grid │ │ │ │ │ └── data_grid.js │ │ │ │ ├── dialogs │ │ │ │ │ └── dialogs.js │ │ │ │ ├── diff_view │ │ │ │ │ └── diff_view.js │ │ │ │ ├── expandable_list │ │ │ │ │ └── expandable_list.js │ │ │ │ ├── helpers │ │ │ │ │ └── helpers.js │ │ │ │ ├── icon_button │ │ │ │ │ └── icon_button.js │ │ │ │ ├── input │ │ │ │ │ └── input.js │ │ │ │ ├── issue_counter │ │ │ │ │ └── issue_counter.js │ │ │ │ ├── legacy_wrapper │ │ │ │ │ └── legacy_wrapper.js │ │ │ │ ├── linear_memory_inspector │ │ │ │ │ ├── linear_memory_inspector-meta.js │ │ │ │ │ └── linear_memory_inspector.js │ │ │ │ ├── linkifier │ │ │ │ │ └── linkifier.js │ │ │ │ ├── markdown_view │ │ │ │ │ └── markdown_view.js │ │ │ │ ├── menus │ │ │ │ │ └── menus.js │ │ │ │ ├── node_text │ │ │ │ │ └── node_text.js │ │ │ │ ├── panel_feedback │ │ │ │ │ └── panel_feedback.js │ │ │ │ ├── panel_introduction_steps │ │ │ │ │ └── panel_introduction_steps.js │ │ │ │ ├── render_coordinator │ │ │ │ │ └── render_coordinator.js │ │ │ │ ├── report_view │ │ │ │ │ └── report_view.js │ │ │ │ ├── request_link_icon │ │ │ │ │ └── request_link_icon.js │ │ │ │ ├── settings │ │ │ │ │ └── settings.js │ │ │ │ ├── srgb_overlay │ │ │ │ │ └── srgb_overlay.js │ │ │ │ ├── survey_link │ │ │ │ │ └── survey_link.js │ │ │ │ ├── text_editor │ │ │ │ │ └── text_editor.js │ │ │ │ ├── text_prompt │ │ │ │ │ └── text_prompt.js │ │ │ │ ├── tree_outline │ │ │ │ │ └── tree_outline.js │ │ │ │ └── two_states_counter │ │ │ │ │ └── two_states_counter.js │ │ │ ├── legacy │ │ │ │ ├── components │ │ │ │ │ ├── color_picker │ │ │ │ │ │ ├── color_picker-legacy.js │ │ │ │ │ │ └── color_picker.js │ │ │ │ │ ├── cookie_table │ │ │ │ │ │ ├── cookie_table-legacy.js │ │ │ │ │ │ └── cookie_table.js │ │ │ │ │ ├── data_grid │ │ │ │ │ │ ├── data_grid-legacy.js │ │ │ │ │ │ └── data_grid.js │ │ │ │ │ ├── inline_editor │ │ │ │ │ │ ├── inline_editor-legacy.js │ │ │ │ │ │ └── inline_editor.js │ │ │ │ │ ├── object_ui │ │ │ │ │ │ ├── object_ui-legacy.js │ │ │ │ │ │ ├── object_ui-meta.js │ │ │ │ │ │ └── object_ui.js │ │ │ │ │ ├── perf_ui │ │ │ │ │ │ ├── perf_ui-legacy.js │ │ │ │ │ │ ├── perf_ui-meta.js │ │ │ │ │ │ └── perf_ui.js │ │ │ │ │ ├── quick_open │ │ │ │ │ │ ├── quick_open-legacy.js │ │ │ │ │ │ ├── quick_open-meta.js │ │ │ │ │ │ └── quick_open.js │ │ │ │ │ ├── source_frame │ │ │ │ │ │ ├── source_frame-legacy.js │ │ │ │ │ │ ├── source_frame-meta.js │ │ │ │ │ │ └── source_frame.js │ │ │ │ │ └── utils │ │ │ │ │ │ ├── utils-legacy.js │ │ │ │ │ │ └── utils.js │ │ │ │ ├── legacy-legacy.js │ │ │ │ ├── legacy.js │ │ │ │ ├── theme_support │ │ │ │ │ └── theme_support.js │ │ │ │ └── utils │ │ │ │ │ └── utils.js │ │ │ └── lit-html │ │ │ │ └── lit-html.js │ │ │ └── worker_app.html │ ├── index.js │ └── package.json ├── dev-middleware │ ├── .gitignore │ ├── README.md │ ├── index.js.flow │ ├── package.json │ └── src │ │ ├── __tests__ │ │ ├── FetchUtils.js │ │ ├── InspectorDebuggerUtils.js │ │ ├── InspectorDeviceUtils.js │ │ ├── InspectorProtocolUtils.js │ │ ├── InspectorProxyCdpRewritingHacks-test.js │ │ ├── InspectorProxyCdpTransport-test.js │ │ ├── InspectorProxyHttpApi-test.js │ │ ├── InspectorProxyReactNativeReloads-test.js │ │ ├── ResourceUtils.js │ │ ├── ServerUtils.js │ │ ├── __fixtures__ │ │ │ └── mock-source-file.txt │ │ └── __snapshots__ │ │ │ └── InspectorProxyHttpApi-test.js.snap │ │ ├── createDevMiddleware.js │ │ ├── index.flow.js │ │ ├── index.js │ │ ├── inspector-proxy │ │ ├── Device.js │ │ ├── DeviceEventReporter.js │ │ ├── InspectorProxy.js │ │ └── types.js │ │ ├── middleware │ │ ├── deprecated_openFlipperMiddleware.js │ │ └── openDebuggerMiddleware.js │ │ ├── types │ │ ├── BrowserLauncher.js │ │ ├── EventReporter.js │ │ ├── Experiments.js │ │ └── Logger.js │ │ └── utils │ │ ├── DefaultBrowserLauncher.js │ │ └── getDevToolsFrontendUrl.js ├── eslint-config-react-native │ ├── README.md │ ├── index.js │ └── package.json ├── eslint-plugin-react-native │ ├── README.md │ ├── __tests__ │ │ ├── eslint-tester.js │ │ └── platform-colors-test.js │ ├── index.js │ ├── package.json │ └── platform-colors.js ├── eslint-plugin-specs │ ├── README.md │ ├── __tests__ │ │ ├── eslint-tester.js │ │ └── react-native-modules-test.js │ ├── index.js │ ├── package.json │ ├── postpack.js │ ├── prepack.js │ ├── react-native-modules.js │ └── with-babel-register │ │ ├── disk-cache.js │ │ └── index.js ├── hermes-inspector-msggen │ ├── .babelrc │ ├── .gitignore │ ├── README.md │ ├── __tests__ │ │ ├── command-test.js │ │ ├── event-test.js │ │ ├── graph-test.js │ │ ├── header-writer-test.js │ │ ├── implementation-writer-test.js │ │ ├── property-test.js │ │ └── type-test.js │ ├── package.json │ └── src │ │ ├── Command.js │ │ ├── Converters.js │ │ ├── Event.js │ │ ├── GeneratedHeader.js │ │ ├── Graph.js │ │ ├── HeaderWriter.js │ │ ├── ImplementationWriter.js │ │ ├── Property.js │ │ ├── TestHelpers.js │ │ ├── Type.js │ │ ├── custom.json │ │ └── index.js ├── metro-config │ ├── README.md │ ├── index.js │ └── package.json ├── normalize-color │ ├── .npmignore │ ├── README.md │ ├── __tests__ │ │ └── normalizeColor-test.js │ ├── index.js │ ├── index.js.flow │ └── package.json ├── polyfills │ ├── .npmignore │ ├── README.md │ ├── console.js │ ├── error-guard.js │ ├── index.js │ └── package.json ├── react-native-babel-preset │ ├── .npmignore │ ├── README.md │ ├── package.json │ └── src │ │ ├── configs │ │ ├── hmr.js │ │ ├── lazy-imports.js │ │ └── main.js │ │ ├── index.js │ │ └── passthrough-syntax-plugins.js ├── react-native-babel-transformer │ ├── .npmignore │ ├── package.json │ └── src │ │ ├── __tests__ │ │ └── transform-test.js │ │ └── index.js ├── react-native-bots │ ├── .babelrc │ ├── README.md │ ├── code-analysis-bot.js │ ├── dangerfile.js │ ├── datastore.js │ ├── make-comment.js │ ├── package.json │ └── report-bundle-size.js ├── react-native-codegen-typescript-test │ ├── __generated__ │ │ └── .gitignore │ ├── package.json │ ├── scripts │ │ └── build.js │ ├── src │ │ └── __tests__ │ │ │ └── simple-scenario-frontend-test.ts │ └── tsconfig.json ├── react-native-codegen │ ├── .babelrc │ ├── .prettierrc │ ├── README.md │ ├── e2e │ │ ├── __test_fixtures__ │ │ │ ├── components │ │ │ │ ├── ArrayPropsNativeComponent.js │ │ │ │ ├── BooleanPropNativeComponent.js │ │ │ │ ├── ColorPropNativeComponent.js │ │ │ │ ├── DimensionPropNativeComponent.js │ │ │ │ ├── EdgeInsetsPropNativeComponent.js │ │ │ │ ├── EnumPropNativeComponent.js │ │ │ │ ├── EventNestedObjectPropsNativeComponent.js │ │ │ │ ├── EventPropsNativeComponent.js │ │ │ │ ├── FloatPropsNativeComponent.js │ │ │ │ ├── ImagePropNativeComponent.js │ │ │ │ ├── IntegerPropNativeComponent.js │ │ │ │ ├── InterfaceOnlyNativeComponent.js │ │ │ │ ├── MixedPropNativeComponent.js │ │ │ │ ├── MultiNativePropNativeComponent.js │ │ │ │ ├── NoPropsNoEventsNativeComponent.js │ │ │ │ ├── ObjectPropsNativeComponent.js │ │ │ │ ├── PointPropNativeComponent.js │ │ │ │ └── StringPropNativeComponent.js │ │ │ └── modules │ │ │ │ ├── NativeArrayTurboModule.js │ │ │ │ ├── NativeBooleanTurboModule.js │ │ │ │ ├── NativeCallbackTurboModule.js │ │ │ │ ├── NativeEnumTurboModule.js │ │ │ │ ├── NativeNullableTurboModule.js │ │ │ │ ├── NativeNumberTurboModule.js │ │ │ │ ├── NativeObjectTurboModule.js │ │ │ │ ├── NativeOptionalObjectTurboModule.js │ │ │ │ ├── NativePartialAnnotationTurboModule.js │ │ │ │ ├── NativePromiseTurboModule.js │ │ │ │ ├── NativeSampleTurboModule.js │ │ │ │ ├── NativeSampleTurboModuleArrays.js │ │ │ │ ├── NativeSampleTurboModuleNullable.js │ │ │ │ ├── NativeSampleTurboModuleNullableAndOptional.js │ │ │ │ ├── NativeSampleTurboModuleOptional.js │ │ │ │ └── NativeStringTurboModule.js │ │ └── __tests__ │ │ │ ├── components │ │ │ ├── GenerateComponentDescriptorH-test.js │ │ │ ├── GenerateComponentHObjCpp-test.js │ │ │ ├── GenerateEventEmitterCpp-test.js │ │ │ ├── GenerateEventEmitterH-test.js │ │ │ ├── GeneratePropsCpp-test.js │ │ │ ├── GeneratePropsH-test.js │ │ │ ├── GeneratePropsJavaDelegate-test.js │ │ │ ├── GeneratePropsJavaInterface-test.js │ │ │ ├── GenerateShadowNodeCpp-test.js │ │ │ ├── GenerateShadowNodeH-test.js │ │ │ ├── GenerateViewConfigJs-test.js │ │ │ └── __snapshots__ │ │ │ │ ├── GenerateComponentDescriptorH-test.js.snap │ │ │ │ ├── GenerateComponentHObjCpp-test.js.snap │ │ │ │ ├── GenerateEventEmitterCpp-test.js.snap │ │ │ │ ├── GenerateEventEmitterH-test.js.snap │ │ │ │ ├── GeneratePropsCpp-test.js.snap │ │ │ │ ├── GeneratePropsH-test.js.snap │ │ │ │ ├── GeneratePropsJavaDelegate-test.js.snap │ │ │ │ ├── GeneratePropsJavaInterface-test.js.snap │ │ │ │ ├── GenerateShadowNodeCpp-test.js.snap │ │ │ │ ├── GenerateShadowNodeH-test.js.snap │ │ │ │ └── GenerateViewConfigJs-test.js.snap │ │ │ └── modules │ │ │ ├── GenerateModuleCpp-test.js │ │ │ ├── GenerateModuleH-test.js │ │ │ ├── GenerateModuleObjCpp-test.js │ │ │ └── __snapshots__ │ │ │ ├── GenerateModuleCpp-test.js.snap │ │ │ ├── GenerateModuleH-test.js.snap │ │ │ └── GenerateModuleObjCpp-test.js.snap │ ├── package.json │ ├── scripts │ │ ├── build.js │ │ └── oss │ │ │ └── build.sh │ └── src │ │ ├── CodegenSchema.d.ts │ │ ├── CodegenSchema.js │ │ ├── SchemaValidator.d.ts │ │ ├── SchemaValidator.js │ │ ├── __tests__ │ │ ├── SchemaValidator-test.js │ │ └── __snapshots__ │ │ │ └── SchemaValidator-test.js.snap │ │ ├── cli │ │ ├── combine │ │ │ ├── __tests__ │ │ │ │ └── combine-utils-test.js │ │ │ ├── combine-js-to-schema-cli.js │ │ │ ├── combine-js-to-schema.js │ │ │ ├── combine-schemas-cli.js │ │ │ └── combine-utils.js │ │ ├── generators │ │ │ └── generate-all.js │ │ └── parser │ │ │ ├── parser-cli.js │ │ │ ├── parser.js │ │ │ └── parser.sh │ │ ├── generators │ │ ├── RNCodegen.d.ts │ │ ├── RNCodegen.js │ │ ├── TypeUtils │ │ │ ├── Cxx │ │ │ │ └── index.js │ │ │ ├── Java │ │ │ │ └── index.js │ │ │ └── Objective-C │ │ │ │ └── index.js │ │ ├── Utils.js │ │ ├── __test_fixtures__ │ │ │ └── fixtures.js │ │ ├── __tests__ │ │ │ └── RNCodegen-test.js │ │ ├── components │ │ │ ├── ComponentsGeneratorUtils.js │ │ │ ├── CppHelpers.js │ │ │ ├── GenerateComponentDescriptorH.js │ │ │ ├── GenerateComponentHObjCpp.js │ │ │ ├── GenerateEventEmitterCpp.js │ │ │ ├── GenerateEventEmitterH.js │ │ │ ├── GeneratePropsCpp.js │ │ │ ├── GeneratePropsH.js │ │ │ ├── GeneratePropsJavaDelegate.js │ │ │ ├── GeneratePropsJavaInterface.js │ │ │ ├── GeneratePropsJavaPojo │ │ │ │ ├── PojoCollector.js │ │ │ │ ├── index.js │ │ │ │ └── serializePojo.js │ │ │ ├── GenerateShadowNodeCpp.js │ │ │ ├── GenerateShadowNodeH.js │ │ │ ├── GenerateStateCpp.js │ │ │ ├── GenerateStateH.js │ │ │ ├── GenerateTests.js │ │ │ ├── GenerateThirdPartyFabricComponentsProviderH.js │ │ │ ├── GenerateThirdPartyFabricComponentsProviderObjCpp.js │ │ │ ├── GenerateViewConfigJs.js │ │ │ ├── JavaHelpers.js │ │ │ ├── __test_fixtures__ │ │ │ │ └── fixtures.js │ │ │ └── __tests__ │ │ │ │ ├── GenerateComponentDescriptorH-test.js │ │ │ │ ├── GenerateComponentHObjCpp-test.js │ │ │ │ ├── GenerateEventEmitterCpp-test.js │ │ │ │ ├── GenerateEventEmitterH-test.js │ │ │ │ ├── GeneratePropsCpp-test.js │ │ │ │ ├── GeneratePropsH-test.js │ │ │ │ ├── GeneratePropsJavaDelegate-test.js │ │ │ │ ├── GeneratePropsJavaInterface-test.js │ │ │ │ ├── GeneratePropsJavaPojo-test.js │ │ │ │ ├── GenerateShadowNodeCpp-test.js │ │ │ │ ├── GenerateShadowNodeH-test.js │ │ │ │ ├── GenerateStateCpp-test.js │ │ │ │ ├── GenerateStateH-test.js │ │ │ │ ├── GenerateTests-test.js │ │ │ │ ├── GenerateThirdPartyFabricComponentsProviderH-test.js │ │ │ │ ├── GenerateThirdPartyFabricComponentsProviderObjCpp-test.js │ │ │ │ ├── GenerateViewConfigJs-test.js │ │ │ │ └── __snapshots__ │ │ │ │ ├── GenerateComponentDescriptorH-test.js.snap │ │ │ │ ├── GenerateComponentHObjCpp-test.js.snap │ │ │ │ ├── GenerateEventEmitterCpp-test.js.snap │ │ │ │ ├── GenerateEventEmitterH-test.js.snap │ │ │ │ ├── GeneratePropsCpp-test.js.snap │ │ │ │ ├── GeneratePropsH-test.js.snap │ │ │ │ ├── GeneratePropsJavaDelegate-test.js.snap │ │ │ │ ├── GeneratePropsJavaInterface-test.js.snap │ │ │ │ ├── GeneratePropsJavaPojo-test.js.snap │ │ │ │ ├── GenerateShadowNodeCpp-test.js.snap │ │ │ │ ├── GenerateShadowNodeH-test.js.snap │ │ │ │ ├── GenerateStateCpp-test.js.snap │ │ │ │ ├── GenerateStateH-test.js.snap │ │ │ │ ├── GenerateTests-test.js.snap │ │ │ │ ├── GenerateThirdPartyFabricComponentsProviderH-test.js.snap │ │ │ │ ├── GenerateThirdPartyFabricComponentsProviderObjCpp-test.js.snap │ │ │ │ └── GenerateViewConfigJs-test.js.snap │ │ └── modules │ │ │ ├── GenerateModuleCpp.js │ │ │ ├── GenerateModuleH.js │ │ │ ├── GenerateModuleJavaSpec.js │ │ │ ├── GenerateModuleJniCpp.js │ │ │ ├── GenerateModuleJniH.js │ │ │ ├── GenerateModuleObjCpp │ │ │ ├── StructCollector.js │ │ │ ├── Utils.js │ │ │ ├── header │ │ │ │ ├── serializeConstantsStruct.js │ │ │ │ ├── serializeRegularStruct.js │ │ │ │ └── serializeStruct.js │ │ │ ├── index.js │ │ │ ├── serializeMethod.js │ │ │ └── source │ │ │ │ └── serializeModule.js │ │ │ ├── Utils.js │ │ │ ├── __test_fixtures__ │ │ │ └── fixtures.js │ │ │ └── __tests__ │ │ │ ├── GenerateModuleCpp-test.js │ │ │ ├── GenerateModuleH-test.js │ │ │ ├── GenerateModuleHObjCpp-test.js │ │ │ ├── GenerateModuleJavaSpec-test.js │ │ │ ├── GenerateModuleJniCpp-test.js │ │ │ ├── GenerateModuleJniH-test.js │ │ │ ├── GenerateModuleMm-test.js │ │ │ └── __snapshots__ │ │ │ ├── GenerateModuleCpp-test.js.snap │ │ │ ├── GenerateModuleH-test.js.snap │ │ │ ├── GenerateModuleHObjCpp-test.js.snap │ │ │ ├── GenerateModuleJavaSpec-test.js.snap │ │ │ ├── GenerateModuleJniCpp-test.js.snap │ │ │ ├── GenerateModuleJniH-test.js.snap │ │ │ └── GenerateModuleMm-test.js.snap │ │ └── parsers │ │ ├── __tests__ │ │ ├── error-utils-test.js │ │ ├── parsers-commons-test.js │ │ ├── parsers-primitives-test.js │ │ ├── parsers-test.js │ │ └── utils-test.js │ │ ├── consistency │ │ ├── __tests__ │ │ │ ├── checkComponentSnaps-test.js │ │ │ └── checkModuleSnaps-test.js │ │ └── compareSnaps.js │ │ ├── error-utils.js │ │ ├── errors.d.ts │ │ ├── errors.js │ │ ├── flow │ │ ├── components │ │ │ ├── __test_fixtures__ │ │ │ │ ├── failures.js │ │ │ │ └── fixtures.js │ │ │ ├── __tests__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── component-parser-test.js.snap │ │ │ │ └── component-parser-test.js │ │ │ ├── commands.js │ │ │ ├── componentsUtils.js │ │ │ ├── events.js │ │ │ └── index.js │ │ ├── modules │ │ │ ├── __test_fixtures__ │ │ │ │ ├── failures.js │ │ │ │ └── fixtures.js │ │ │ ├── __tests__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── module-parser-snapshot-test.js.snap │ │ │ │ ├── module-parser-e2e-test.js │ │ │ │ └── module-parser-snapshot-test.js │ │ │ └── index.js │ │ ├── parseFlowAndThrowErrors.js │ │ ├── parser.d.ts │ │ ├── parser.js │ │ └── utils.js │ │ ├── parser.d.ts │ │ ├── parser.js │ │ ├── parserMock.js │ │ ├── parsers-commons.js │ │ ├── parsers-primitives.js │ │ ├── parsers-utils.js │ │ ├── schema.js │ │ ├── schema │ │ ├── index.d.ts │ │ └── index.js │ │ ├── typescript │ │ ├── components │ │ │ ├── __test_fixtures__ │ │ │ │ ├── failures.js │ │ │ │ └── fixtures.js │ │ │ ├── __tests__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── typescript-component-parser-test.js.snap │ │ │ │ └── typescript-component-parser-test.js │ │ │ ├── commands.js │ │ │ ├── componentsUtils.js │ │ │ ├── events.js │ │ │ ├── extends.js │ │ │ └── index.js │ │ ├── modules │ │ │ ├── __test_fixtures__ │ │ │ │ ├── failures.js │ │ │ │ └── fixtures.js │ │ │ ├── __tests__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── typescript-module-parser-snapshot-test.js.snap │ │ │ │ ├── typescript-module-parser-e2e-test.js │ │ │ │ └── typescript-module-parser-snapshot-test.js │ │ │ └── index.js │ │ ├── parseTopLevelType.js │ │ ├── parser.d.ts │ │ └── parser.js │ │ └── utils.js ├── react-native-gradle-plugin │ ├── README.md │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ ├── libs.versions.toml │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── package.json │ ├── settings.gradle.kts │ └── src │ │ ├── main │ │ └── kotlin │ │ │ └── com │ │ │ └── facebook │ │ │ └── react │ │ │ ├── ReactExtension.kt │ │ │ ├── ReactPlugin.kt │ │ │ ├── ReactRootProjectPlugin.kt │ │ │ ├── TaskConfiguration.kt │ │ │ ├── internal │ │ │ └── PrivateReactExtension.kt │ │ │ ├── model │ │ │ ├── ModelCodegenConfig.kt │ │ │ ├── ModelCodegenConfigAndroid.kt │ │ │ └── ModelPackageJson.kt │ │ │ ├── tasks │ │ │ ├── BundleHermesCTask.kt │ │ │ ├── GenerateCodegenArtifactsTask.kt │ │ │ ├── GenerateCodegenSchemaTask.kt │ │ │ └── internal │ │ │ │ ├── BuildCodegenCLITask.kt │ │ │ │ ├── PrepareBoostTask.kt │ │ │ │ ├── PrepareGlogTask.kt │ │ │ │ ├── PrepareJSCTask.kt │ │ │ │ ├── PreparePrefabHeadersTask.kt │ │ │ │ └── utils │ │ │ │ └── PrefabPreprocessingEntry.kt │ │ │ └── utils │ │ │ ├── AgpConfiguratorUtils.kt │ │ │ ├── BackwardCompatUtils.kt │ │ │ ├── DependencyUtils.kt │ │ │ ├── FileUtils.kt │ │ │ ├── JdkConfiguratorUtils.kt │ │ │ ├── JsonUtils.kt │ │ │ ├── KotlinStdlibCompatUtils.kt │ │ │ ├── NdkConfiguratorUtils.kt │ │ │ ├── Os.kt │ │ │ ├── PathUtils.kt │ │ │ ├── ProjectUtils.kt │ │ │ ├── PropertyUtils.kt │ │ │ └── TaskUtils.kt │ │ └── test │ │ └── kotlin │ │ └── com │ │ └── facebook │ │ └── react │ │ ├── TestReactExtension.kt │ │ ├── tasks │ │ ├── BundleHermesCTaskTest.kt │ │ ├── GenerateCodegenArtifactsTaskTest.kt │ │ ├── GenerateCodegenSchemaTaskTest.kt │ │ └── internal │ │ │ ├── BuildCodegenCLITaskTest.kt │ │ │ ├── PrepareBoostTaskTest.kt │ │ │ ├── PrepareGlogTaskTest.kt │ │ │ ├── PrepareJSCTaskTest.kt │ │ │ ├── PreparePrefabHeadersTaskTest.kt │ │ │ └── utils │ │ │ └── PrefabPreprocessingEntryTest.kt │ │ ├── tests │ │ ├── OsRule.kt │ │ ├── TaskTestUtils.kt │ │ └── WithOs.kt │ │ └── utils │ │ ├── AgpConfiguratorUtilsTest.kt │ │ ├── BackwardCompatUtilsTest.kt │ │ ├── DependencyUtilsTest.kt │ │ ├── FileUtilsTest.kt │ │ ├── JsonUtilsTest.kt │ │ ├── KotlinStdlibCompatUtilsTest.kt │ │ ├── NdkConfiguratorUtilsTest.kt │ │ ├── OsTest.kt │ │ ├── PathUtilsTest.kt │ │ ├── ProjectUtilsTest.kt │ │ └── TaskUtilsTest.kt ├── react-native │ ├── LICENSE │ ├── Libraries │ │ ├── .npmignore │ │ ├── ActionSheetIOS │ │ │ ├── ActionSheetIOS.d.ts │ │ │ ├── ActionSheetIOS.js │ │ │ ├── NativeActionSheetManager.js │ │ │ └── React-RCTActionSheet.podspec │ │ ├── Alert │ │ │ ├── Alert.d.ts │ │ │ ├── Alert.js │ │ │ ├── NativeAlertManager.js │ │ │ ├── RCTAlertManager.android.js │ │ │ ├── RCTAlertManager.ios.js │ │ │ └── RCTAlertManager.js.flow │ │ ├── Animated │ │ │ ├── Animated.d.ts │ │ │ ├── Animated.js │ │ │ ├── AnimatedEvent.js │ │ │ ├── AnimatedImplementation.js │ │ │ ├── AnimatedMock.js │ │ │ ├── AnimatedPlatformConfig.js │ │ │ ├── AnimatedWeb.js │ │ │ ├── Easing.d.ts │ │ │ ├── Easing.js │ │ │ ├── NativeAnimatedHelper.js │ │ │ ├── NativeAnimatedModule.js │ │ │ ├── NativeAnimatedTurboModule.js │ │ │ ├── SpringConfig.js │ │ │ ├── __tests__ │ │ │ │ ├── Animated-test.js │ │ │ │ ├── Animated-web-test.js │ │ │ │ ├── AnimatedMock-test.js │ │ │ │ ├── AnimatedNative-test.js │ │ │ │ ├── AnimatedObject-test.js │ │ │ │ ├── Easing-test.js │ │ │ │ ├── Interpolation-test.js │ │ │ │ ├── TimingAnimation-test.js │ │ │ │ └── bezier-test.js │ │ │ ├── animations │ │ │ │ ├── Animation.js │ │ │ │ ├── DecayAnimation.js │ │ │ │ ├── SpringAnimation.js │ │ │ │ └── TimingAnimation.js │ │ │ ├── bezier.js │ │ │ ├── components │ │ │ │ ├── AnimatedFlatList.js │ │ │ │ ├── AnimatedImage.js │ │ │ │ ├── AnimatedScrollView.js │ │ │ │ ├── AnimatedSectionList.js │ │ │ │ ├── AnimatedText.js │ │ │ │ └── AnimatedView.js │ │ │ ├── createAnimatedComponent.js │ │ │ ├── nodes │ │ │ │ ├── AnimatedAddition.js │ │ │ │ ├── AnimatedColor.js │ │ │ │ ├── AnimatedDiffClamp.js │ │ │ │ ├── AnimatedDivision.js │ │ │ │ ├── AnimatedInterpolation.js │ │ │ │ ├── AnimatedModulo.js │ │ │ │ ├── AnimatedMultiplication.js │ │ │ │ ├── AnimatedNode.js │ │ │ │ ├── AnimatedObject.js │ │ │ │ ├── AnimatedProps.js │ │ │ │ ├── AnimatedStyle.js │ │ │ │ ├── AnimatedSubtraction.js │ │ │ │ ├── AnimatedTracking.js │ │ │ │ ├── AnimatedTransform.js │ │ │ │ ├── AnimatedValue.js │ │ │ │ ├── AnimatedValueXY.js │ │ │ │ └── AnimatedWithChildren.js │ │ │ ├── shouldUseTurboAnimatedModule.js │ │ │ ├── useAnimatedProps.js │ │ │ ├── useAnimatedValue.d.ts │ │ │ └── useAnimatedValue.js │ │ ├── AppDelegate │ │ │ ├── RCTAppDelegate.h │ │ │ ├── RCTAppDelegate.mm │ │ │ ├── RCTAppSetupUtils.h │ │ │ ├── RCTAppSetupUtils.mm │ │ │ └── React-RCTAppDelegate.podspec │ │ ├── AppState │ │ │ ├── AppState.d.ts │ │ │ ├── AppState.js │ │ │ └── NativeAppState.js │ │ ├── BatchedBridge │ │ │ ├── BatchedBridge.js │ │ │ ├── MessageQueue.js │ │ │ ├── NativeModules.d.ts │ │ │ ├── NativeModules.js │ │ │ ├── __mocks__ │ │ │ │ ├── MessageQueueTestConfig.js │ │ │ │ └── MessageQueueTestModule.js │ │ │ └── __tests__ │ │ │ │ ├── MessageQueue-test.js │ │ │ │ └── NativeModules-test.js │ │ ├── Blob │ │ │ ├── Blob.js │ │ │ ├── BlobManager.js │ │ │ ├── BlobRegistry.js │ │ │ ├── BlobTypes.js │ │ │ ├── File.js │ │ │ ├── FileReader.js │ │ │ ├── NativeBlobModule.js │ │ │ ├── NativeFileReaderModule.js │ │ │ ├── RCTBlobCollector.h │ │ │ ├── RCTBlobCollector.mm │ │ │ ├── RCTBlobManager.h │ │ │ ├── RCTBlobManager.mm │ │ │ ├── RCTBlobPlugins.h │ │ │ ├── RCTBlobPlugins.mm │ │ │ ├── RCTFileReaderModule.h │ │ │ ├── RCTFileReaderModule.mm │ │ │ ├── React-RCTBlob.podspec │ │ │ ├── URL.js │ │ │ ├── __mocks__ │ │ │ │ ├── BlobModule.js │ │ │ │ └── FileReaderModule.js │ │ │ └── __tests__ │ │ │ │ ├── Blob-test.js │ │ │ │ ├── BlobManager-test.js │ │ │ │ ├── BlobRegistry-test.js │ │ │ │ ├── File-test.js │ │ │ │ ├── FileReader-test.js │ │ │ │ └── URL-test.js │ │ ├── BugReporting │ │ │ ├── BugReporting.js │ │ │ ├── NativeBugReporting.js │ │ │ ├── dumpReactTree.js │ │ │ └── getReactData.js │ │ ├── Components │ │ │ ├── AccessibilityInfo │ │ │ │ ├── AccessibilityInfo.d.ts │ │ │ │ ├── AccessibilityInfo.js │ │ │ │ ├── NativeAccessibilityInfo.js │ │ │ │ ├── NativeAccessibilityManager.js │ │ │ │ ├── legacySendAccessibilityEvent.android.js │ │ │ │ ├── legacySendAccessibilityEvent.ios.js │ │ │ │ └── legacySendAccessibilityEvent.js.flow │ │ │ ├── ActivityIndicator │ │ │ │ ├── ActivityIndicator.d.ts │ │ │ │ ├── ActivityIndicator.js │ │ │ │ ├── ActivityIndicatorViewNativeComponent.js │ │ │ │ └── __tests__ │ │ │ │ │ ├── ActivityIndicator-test.js │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── ActivityIndicator-test.js.snap │ │ │ ├── Button.d.ts │ │ │ ├── Button.flow.js │ │ │ ├── Button.js │ │ │ ├── Clipboard │ │ │ │ ├── Clipboard.d.ts │ │ │ │ ├── Clipboard.js │ │ │ │ └── NativeClipboard.js │ │ │ ├── DrawerAndroid │ │ │ │ ├── AndroidDrawerLayoutNativeComponent.js │ │ │ │ ├── DrawerLayoutAndroid.android.js │ │ │ │ ├── DrawerLayoutAndroid.d.ts │ │ │ │ ├── DrawerLayoutAndroid.js │ │ │ │ └── __tests__ │ │ │ │ │ ├── DrawerAndroid-test.js │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── DrawerAndroid-test.js.snap │ │ │ ├── Keyboard │ │ │ │ ├── Keyboard.d.ts │ │ │ │ ├── Keyboard.js │ │ │ │ ├── KeyboardAvoidingView.d.ts │ │ │ │ ├── KeyboardAvoidingView.js │ │ │ │ ├── NativeKeyboardObserver.js │ │ │ │ └── __tests__ │ │ │ │ │ └── Keyboard-test.js │ │ │ ├── Pressable │ │ │ │ ├── Pressable.d.ts │ │ │ │ ├── Pressable.js │ │ │ │ ├── __tests__ │ │ │ │ │ ├── Pressable-test.js │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── Pressable-test.js.snap │ │ │ │ └── useAndroidRippleForView.js │ │ │ ├── ProgressBarAndroid │ │ │ │ ├── ProgressBarAndroid.android.js │ │ │ │ ├── ProgressBarAndroid.d.ts │ │ │ │ ├── ProgressBarAndroid.js │ │ │ │ ├── ProgressBarAndroidNativeComponent.js │ │ │ │ └── __tests__ │ │ │ │ │ ├── ProgressBarAndroid-test.js │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── ProgressBarAndroid-test.js.snap │ │ │ ├── RefreshControl │ │ │ │ ├── AndroidSwipeRefreshLayoutNativeComponent.js │ │ │ │ ├── PullToRefreshViewNativeComponent.js │ │ │ │ ├── RefreshControl.d.ts │ │ │ │ ├── RefreshControl.js │ │ │ │ └── __mocks__ │ │ │ │ │ └── RefreshControlMock.js │ │ │ ├── SafeAreaView │ │ │ │ ├── RCTSafeAreaViewNativeComponent.js │ │ │ │ ├── SafeAreaView.d.ts │ │ │ │ ├── SafeAreaView.js │ │ │ │ └── __tests__ │ │ │ │ │ ├── SafeAreaView-test.js │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── SafeAreaView-test.js.snap │ │ │ ├── ScrollView │ │ │ │ ├── AndroidHorizontalScrollContentViewNativeComponent.js │ │ │ │ ├── AndroidHorizontalScrollViewNativeComponent.js │ │ │ │ ├── ScrollContentViewNativeComponent.js │ │ │ │ ├── ScrollView.d.ts │ │ │ │ ├── ScrollView.js │ │ │ │ ├── ScrollViewCommands.js │ │ │ │ ├── ScrollViewContext.js │ │ │ │ ├── ScrollViewNativeComponent.js │ │ │ │ ├── ScrollViewNativeComponentType.js │ │ │ │ ├── ScrollViewStickyHeader.js │ │ │ │ ├── __tests__ │ │ │ │ │ ├── ScrollView-test.js │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── ScrollView-test.js.snap │ │ │ │ └── processDecelerationRate.js │ │ │ ├── Sound │ │ │ │ ├── NativeSoundManager.js │ │ │ │ └── SoundManager.js │ │ │ ├── StaticRenderer.js │ │ │ ├── StatusBar │ │ │ │ ├── NativeStatusBarManagerAndroid.js │ │ │ │ ├── NativeStatusBarManagerIOS.js │ │ │ │ ├── StatusBar.d.ts │ │ │ │ ├── StatusBar.js │ │ │ │ └── __tests__ │ │ │ │ │ └── StatusBar-test.js │ │ │ ├── Switch │ │ │ │ ├── AndroidSwitchNativeComponent.js │ │ │ │ ├── Switch.d.ts │ │ │ │ ├── Switch.js │ │ │ │ └── SwitchNativeComponent.js │ │ │ ├── TextInput │ │ │ │ ├── AndroidTextInputNativeComponent.js │ │ │ │ ├── InputAccessoryView.d.ts │ │ │ │ ├── InputAccessoryView.js │ │ │ │ ├── RCTInputAccessoryViewNativeComponent.js │ │ │ │ ├── RCTMultilineTextInputNativeComponent.js │ │ │ │ ├── RCTSingelineTextInputNativeComponent.js │ │ │ │ ├── RCTTextInputViewConfig.js │ │ │ │ ├── TextInput.d.ts │ │ │ │ ├── TextInput.flow.js │ │ │ │ ├── TextInput.js │ │ │ │ ├── TextInputNativeCommands.js │ │ │ │ ├── TextInputState.js │ │ │ │ └── __tests__ │ │ │ │ │ ├── InputAccessoryView-test.js │ │ │ │ │ ├── TextInput-test.js │ │ │ │ │ └── __snapshots__ │ │ │ │ │ ├── InputAccessoryView-test.js.snap │ │ │ │ │ └── TextInput-test.js.snap │ │ │ ├── ToastAndroid │ │ │ │ ├── NativeToastAndroid.js │ │ │ │ ├── ToastAndroid.android.js │ │ │ │ ├── ToastAndroid.d.ts │ │ │ │ └── ToastAndroid.js │ │ │ ├── Touchable │ │ │ │ ├── BoundingDimensions.js │ │ │ │ ├── PooledClass.js │ │ │ │ ├── Position.js │ │ │ │ ├── Touchable.d.ts │ │ │ │ ├── Touchable.flow.js │ │ │ │ ├── Touchable.js │ │ │ │ ├── TouchableBounce.js │ │ │ │ ├── TouchableHighlight.d.ts │ │ │ │ ├── TouchableHighlight.js │ │ │ │ ├── TouchableNativeFeedback.d.ts │ │ │ │ ├── TouchableNativeFeedback.js │ │ │ │ ├── TouchableOpacity.d.ts │ │ │ │ ├── TouchableOpacity.js │ │ │ │ ├── TouchableWithoutFeedback.d.ts │ │ │ │ ├── TouchableWithoutFeedback.js │ │ │ │ └── __tests__ │ │ │ │ │ ├── TouchableHighlight-test.js │ │ │ │ │ ├── TouchableNativeFeedback-test.js │ │ │ │ │ ├── TouchableOpacity-test.js │ │ │ │ │ ├── TouchableWithoutFeedback-test.js │ │ │ │ │ └── __snapshots__ │ │ │ │ │ ├── TouchableHighlight-test.js.snap │ │ │ │ │ ├── TouchableNativeFeedback-test.js.snap │ │ │ │ │ ├── TouchableOpacity-test.js.snap │ │ │ │ │ └── TouchableWithoutFeedback-test.js.snap │ │ │ ├── TraceUpdateOverlay │ │ │ │ └── TraceUpdateOverlay.js │ │ │ ├── UnimplementedViews │ │ │ │ ├── UnimplementedNativeViewNativeComponent.js │ │ │ │ └── UnimplementedView.js │ │ │ ├── View │ │ │ │ ├── ReactNativeStyleAttributes.js │ │ │ │ ├── ReactNativeViewAttributes.js │ │ │ │ ├── View.d.ts │ │ │ │ ├── View.js │ │ │ │ ├── ViewAccessibility.d.ts │ │ │ │ ├── ViewAccessibility.js │ │ │ │ ├── ViewNativeComponent.js │ │ │ │ ├── ViewPropTypes.d.ts │ │ │ │ ├── ViewPropTypes.js │ │ │ │ └── __tests__ │ │ │ │ │ └── View-test.js │ │ │ └── __tests__ │ │ │ │ ├── Button-test.js │ │ │ │ └── __snapshots__ │ │ │ │ └── Button-test.js.snap │ │ ├── Core │ │ │ ├── Devtools │ │ │ │ ├── __tests__ │ │ │ │ │ ├── loadBundleFromServer-test.js │ │ │ │ │ ├── parseErrorStack-test.js │ │ │ │ │ └── parseHermesStack-test.js │ │ │ │ ├── getDevServer.js │ │ │ │ ├── loadBundleFromServer.js │ │ │ │ ├── openFileInEditor.js │ │ │ │ ├── openURLInBrowser.js │ │ │ │ ├── parseErrorStack.js │ │ │ │ ├── parseHermesStack.js │ │ │ │ └── symbolicateStackTrace.js │ │ │ ├── ExceptionsManager.js │ │ │ ├── ExtendedError.js │ │ │ ├── InitializeCore.js │ │ │ ├── NativeExceptionsManager.js │ │ │ ├── RawEventEmitter.js │ │ │ ├── ReactFiberErrorDialog.js │ │ │ ├── ReactNativeVersion.js │ │ │ ├── ReactNativeVersionCheck.js │ │ │ ├── SegmentFetcher │ │ │ │ └── NativeSegmentFetcher.js │ │ │ ├── Timers │ │ │ │ ├── JSTimers.js │ │ │ │ ├── NativeTiming.js │ │ │ │ ├── __tests__ │ │ │ │ │ └── JSTimers-test.js │ │ │ │ ├── immediateShim.js │ │ │ │ └── queueMicrotask.js │ │ │ ├── __mocks__ │ │ │ │ ├── ErrorUtils.js │ │ │ │ └── NativeExceptionsManager.js │ │ │ ├── __tests__ │ │ │ │ ├── ExceptionsManager-test.js │ │ │ │ └── ReactNativeVersionCheck-test.js │ │ │ ├── checkNativeVersion.js │ │ │ ├── polyfillPromise.js │ │ │ ├── setUpAlert.js │ │ │ ├── setUpBatchedBridge.js │ │ │ ├── setUpDOM.js │ │ │ ├── setUpDeveloperTools.js │ │ │ ├── setUpErrorHandling.js │ │ │ ├── setUpGlobals.js │ │ │ ├── setUpIntersectionObserver.js │ │ │ ├── setUpMutationObserver.js │ │ │ ├── setUpNavigator.js │ │ │ ├── setUpPerformance.js │ │ │ ├── setUpPerformanceObserver.js │ │ │ ├── setUpReactDevTools.js │ │ │ ├── setUpReactRefresh.js │ │ │ ├── setUpRegeneratorRuntime.js │ │ │ ├── setUpSegmentFetcher.js │ │ │ ├── setUpTimers.js │ │ │ └── setUpXHR.js │ │ ├── DOM │ │ │ ├── Geometry │ │ │ │ ├── DOMRect.js │ │ │ │ └── DOMRectReadOnly.js │ │ │ ├── Nodes │ │ │ │ ├── ReactNativeElement.js │ │ │ │ ├── ReadOnlyCharacterData.js │ │ │ │ ├── ReadOnlyElement.js │ │ │ │ ├── ReadOnlyNode.js │ │ │ │ ├── ReadOnlyText.js │ │ │ │ └── Utilities │ │ │ │ │ └── Traversal.js │ │ │ └── OldStyleCollections │ │ │ │ ├── ArrayLikeUtils.js │ │ │ │ ├── DOMRectList.js │ │ │ │ ├── DOMRectList.js.flow │ │ │ │ ├── HTMLCollection.js │ │ │ │ ├── HTMLCollection.js.flow │ │ │ │ ├── NodeList.js │ │ │ │ ├── NodeList.js.flow │ │ │ │ └── __tests__ │ │ │ │ ├── DOMRectList-test.js │ │ │ │ ├── HTMLCollection-test.js │ │ │ │ └── NodeList-test.js │ │ ├── Debugging │ │ │ └── DebuggingOverlayNativeComponent.js │ │ ├── DevToolsSettings │ │ │ ├── DevToolsSettingsManager.android.js │ │ │ ├── DevToolsSettingsManager.d.ts │ │ │ ├── DevToolsSettingsManager.ios.js │ │ │ ├── DevToolsSettingsManager.js.flow │ │ │ └── NativeDevToolsSettingsManager.js │ │ ├── EventEmitter │ │ │ ├── NativeEventEmitter.d.ts │ │ │ ├── NativeEventEmitter.js │ │ │ ├── RCTDeviceEventEmitter.d.ts │ │ │ ├── RCTDeviceEventEmitter.js │ │ │ ├── RCTEventEmitter.js │ │ │ ├── RCTNativeAppEventEmitter.d.ts │ │ │ ├── RCTNativeAppEventEmitter.js │ │ │ └── __mocks__ │ │ │ │ └── NativeEventEmitter.js │ │ ├── Events │ │ │ ├── CustomEvent.js │ │ │ └── EventPolyfill.js │ │ ├── FBLazyVector │ │ │ ├── FBLazyVector.podspec │ │ │ └── FBLazyVector │ │ │ │ ├── FBLazyIterator.h │ │ │ │ └── FBLazyVector.h │ │ ├── HeapCapture │ │ │ ├── HeapCapture.js │ │ │ └── NativeJSCHeapCapture.js │ │ ├── Image │ │ │ ├── AssetRegistry.js │ │ │ ├── AssetSourceResolver.js │ │ │ ├── AssetUtils.js │ │ │ ├── Image.android.js │ │ │ ├── Image.d.ts │ │ │ ├── Image.ios.js │ │ │ ├── Image.js.flow │ │ │ ├── ImageAnalyticsTagContext.js │ │ │ ├── ImageBackground.js │ │ │ ├── ImageInjection.js │ │ │ ├── ImageProps.js │ │ │ ├── ImageResizeMode.d.ts │ │ │ ├── ImageResizeMode.js │ │ │ ├── ImageSource.d.ts │ │ │ ├── ImageSource.js │ │ │ ├── ImageSourceUtils.js │ │ │ ├── ImageTypes.flow.js │ │ │ ├── ImageUtils.js │ │ │ ├── ImageViewNativeComponent.js │ │ │ ├── NativeImageEditor.js │ │ │ ├── NativeImageLoaderAndroid.js │ │ │ ├── NativeImageLoaderIOS.js │ │ │ ├── NativeImageStoreAndroid.js │ │ │ ├── NativeImageStoreIOS.js │ │ │ ├── RCTAnimatedImage.h │ │ │ ├── RCTAnimatedImage.mm │ │ │ ├── RCTBundleAssetImageLoader.h │ │ │ ├── RCTBundleAssetImageLoader.mm │ │ │ ├── RCTDisplayWeakRefreshable.h │ │ │ ├── RCTDisplayWeakRefreshable.mm │ │ │ ├── RCTGIFImageDecoder.h │ │ │ ├── RCTGIFImageDecoder.mm │ │ │ ├── RCTImageBlurUtils.h │ │ │ ├── RCTImageBlurUtils.mm │ │ │ ├── RCTImageCache.h │ │ │ ├── RCTImageCache.mm │ │ │ ├── RCTImageDataDecoder.h │ │ │ ├── RCTImageEditingManager.h │ │ │ ├── RCTImageEditingManager.mm │ │ │ ├── RCTImageLoader.h │ │ │ ├── RCTImageLoader.mm │ │ │ ├── RCTImageLoaderLoggable.h │ │ │ ├── RCTImageLoaderProtocol.h │ │ │ ├── RCTImageLoaderWithAttributionProtocol.h │ │ │ ├── RCTImagePlugins.h │ │ │ ├── RCTImagePlugins.mm │ │ │ ├── RCTImageShadowView.h │ │ │ ├── RCTImageShadowView.mm │ │ │ ├── RCTImageStoreManager.h │ │ │ ├── RCTImageStoreManager.mm │ │ │ ├── RCTImageURLLoader.h │ │ │ ├── RCTImageURLLoaderWithAttribution.h │ │ │ ├── RCTImageURLLoaderWithAttribution.mm │ │ │ ├── RCTImageUtils.h │ │ │ ├── RCTImageUtils.mm │ │ │ ├── RCTImageView.h │ │ │ ├── RCTImageView.mm │ │ │ ├── RCTImageViewManager.h │ │ │ ├── RCTImageViewManager.mm │ │ │ ├── RCTLocalAssetImageLoader.h │ │ │ ├── RCTLocalAssetImageLoader.mm │ │ │ ├── RCTResizeMode.h │ │ │ ├── RCTResizeMode.mm │ │ │ ├── RCTUIImageViewAnimated.h │ │ │ ├── RCTUIImageViewAnimated.mm │ │ │ ├── React-RCTImage.podspec │ │ │ ├── RelativeImageStub.js │ │ │ ├── TextInlineImageNativeComponent.js │ │ │ ├── __tests__ │ │ │ │ ├── AssetUtils-test.js │ │ │ │ ├── Image-test.js │ │ │ │ ├── ImageBackground-test.js │ │ │ │ ├── ImageSourceUtils-test.js │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── Image-test.js.snap │ │ │ │ │ ├── ImageBackground-test.js.snap │ │ │ │ │ └── assetRelativePathInSnapshot-test.js.snap │ │ │ │ ├── assetRelativePathInSnapshot-test.js │ │ │ │ ├── img │ │ │ │ │ ├── img1.png │ │ │ │ │ └── img2.png │ │ │ │ └── resolveAssetSource-test.js │ │ │ ├── nativeImageSource.js │ │ │ └── resolveAssetSource.js │ │ ├── Inspector │ │ │ ├── BorderBox.js │ │ │ ├── BoxInspector.js │ │ │ ├── ElementBox.js │ │ │ ├── ElementProperties.js │ │ │ ├── Inspector.js │ │ │ ├── InspectorOverlay.js │ │ │ ├── InspectorPanel.js │ │ │ ├── NetworkOverlay.js │ │ │ ├── PerformanceOverlay.js │ │ │ ├── ReactDevToolsOverlay.js │ │ │ ├── StyleInspector.js │ │ │ ├── getInspectorDataForViewAtPoint.js │ │ │ └── resolveBoxStyle.js │ │ ├── Interaction │ │ │ ├── FrameRateLogger.js │ │ │ ├── InteractionManager.d.ts │ │ │ ├── InteractionManager.js │ │ │ ├── JSEventLoopWatchdog.js │ │ │ ├── NativeFrameRateLogger.js │ │ │ ├── PanResponder.d.ts │ │ │ ├── PanResponder.js │ │ │ ├── TaskQueue.js │ │ │ ├── TouchHistoryMath.js │ │ │ └── __tests__ │ │ │ │ ├── InteractionManager-test.js │ │ │ │ └── TaskQueue-test.js │ │ ├── IntersectionObserver │ │ │ ├── IntersectionObserver.js │ │ │ ├── IntersectionObserverEntry.js │ │ │ ├── IntersectionObserverManager.js │ │ │ ├── NativeIntersectionObserver.cpp │ │ │ ├── NativeIntersectionObserver.h │ │ │ ├── NativeIntersectionObserver.js │ │ │ └── __mocks__ │ │ │ │ └── NativeIntersectionObserver.js │ │ ├── JSInspector │ │ │ ├── InspectorAgent.js │ │ │ ├── JSInspector.js │ │ │ └── NetworkAgent.js │ │ ├── LayoutAnimation │ │ │ ├── LayoutAnimation.d.ts │ │ │ └── LayoutAnimation.js │ │ ├── Linking │ │ │ ├── Linking.d.ts │ │ │ ├── Linking.js │ │ │ ├── NativeIntentAndroid.js │ │ │ └── NativeLinkingManager.js │ │ ├── LinkingIOS │ │ │ ├── RCTLinkingManager.h │ │ │ ├── RCTLinkingManager.mm │ │ │ ├── RCTLinkingPlugins.h │ │ │ ├── RCTLinkingPlugins.mm │ │ │ └── React-RCTLinking.podspec │ │ ├── Lists │ │ │ ├── FillRateHelper.js │ │ │ ├── FlatList.d.ts │ │ │ ├── FlatList.js │ │ │ ├── SectionList.d.ts │ │ │ ├── SectionList.js │ │ │ ├── SectionListModern.js │ │ │ ├── ViewabilityHelper.js │ │ │ ├── VirtualizeUtils.js │ │ │ ├── VirtualizedList.js │ │ │ ├── VirtualizedListContext.js │ │ │ ├── VirtualizedSectionList.js │ │ │ ├── __flowtests__ │ │ │ │ ├── FlatList-flowtest.js │ │ │ │ └── SectionList-flowtest.js │ │ │ └── __tests__ │ │ │ │ ├── FlatList-test.js │ │ │ │ ├── SectionList-test.js │ │ │ │ └── __snapshots__ │ │ │ │ ├── FlatList-test.js.snap │ │ │ │ └── SectionList-test.js.snap │ │ ├── LogBox │ │ │ ├── Data │ │ │ │ ├── LogBoxData.js │ │ │ │ ├── LogBoxLog.js │ │ │ │ ├── LogBoxSymbolication.js │ │ │ │ ├── __tests__ │ │ │ │ │ ├── LogBoxData-test.js │ │ │ │ │ ├── LogBoxLog-test.js │ │ │ │ │ ├── LogBoxSymbolication-test.js │ │ │ │ │ └── parseLogBoxLog-test.js │ │ │ │ └── parseLogBoxLog.js │ │ │ ├── LogBox.d.ts │ │ │ ├── LogBox.js │ │ │ ├── LogBoxInspectorContainer.js │ │ │ ├── LogBoxNotificationContainer.js │ │ │ ├── UI │ │ │ │ ├── AnsiHighlight.js │ │ │ │ ├── LogBoxButton.js │ │ │ │ ├── LogBoxImages │ │ │ │ │ ├── alert-triangle.png │ │ │ │ │ ├── chevron-left.png │ │ │ │ │ ├── chevron-right.png │ │ │ │ │ ├── close.png │ │ │ │ │ └── loader.png │ │ │ │ ├── LogBoxInspector.js │ │ │ │ ├── LogBoxInspectorCodeFrame.js │ │ │ │ ├── LogBoxInspectorFooter.js │ │ │ │ ├── LogBoxInspectorHeader.js │ │ │ │ ├── LogBoxInspectorMessageHeader.js │ │ │ │ ├── LogBoxInspectorReactFrames.js │ │ │ │ ├── LogBoxInspectorSection.js │ │ │ │ ├── LogBoxInspectorSourceMapStatus.js │ │ │ │ ├── LogBoxInspectorStackFrame.js │ │ │ │ ├── LogBoxInspectorStackFrames.js │ │ │ │ ├── LogBoxMessage.js │ │ │ │ ├── LogBoxNotification.js │ │ │ │ ├── LogBoxStyle.js │ │ │ │ └── __tests__ │ │ │ │ │ ├── LogBoxButton-test.js │ │ │ │ │ ├── LogBoxInspector-test.js │ │ │ │ │ ├── LogBoxInspectorCodeFrame-test.js │ │ │ │ │ ├── LogBoxInspectorFooter-test.js │ │ │ │ │ ├── LogBoxInspectorHeader-test.js │ │ │ │ │ ├── LogBoxInspectorMessageHeader-test.js │ │ │ │ │ ├── LogBoxInspectorReactFrames-test.js │ │ │ │ │ ├── LogBoxInspectorSection-test.js │ │ │ │ │ ├── LogBoxInspectorSourceMapStatus-test.js │ │ │ │ │ ├── LogBoxInspectorStackFrame-test.js │ │ │ │ │ ├── LogBoxInspectorStackFrames-test.js │ │ │ │ │ ├── LogBoxMessage-test.js │ │ │ │ │ ├── LogBoxNotification-test.js │ │ │ │ │ └── __snapshots__ │ │ │ │ │ ├── LogBoxButton-test.js.snap │ │ │ │ │ ├── LogBoxInspector-test.js.snap │ │ │ │ │ ├── LogBoxInspectorCodeFrame-test.js.snap │ │ │ │ │ ├── LogBoxInspectorFooter-test.js.snap │ │ │ │ │ ├── LogBoxInspectorHeader-test.js.snap │ │ │ │ │ ├── LogBoxInspectorMessageHeader-test.js.snap │ │ │ │ │ ├── LogBoxInspectorReactFrames-test.js.snap │ │ │ │ │ ├── LogBoxInspectorSection-test.js.snap │ │ │ │ │ ├── LogBoxInspectorSourceMapStatus-test.js.snap │ │ │ │ │ ├── LogBoxInspectorStackFrame-test.js.snap │ │ │ │ │ ├── LogBoxInspectorStackFrames-test.js.snap │ │ │ │ │ ├── LogBoxMessage-test.js.snap │ │ │ │ │ └── LogBoxNotification-test.js.snap │ │ │ └── __tests__ │ │ │ │ ├── LogBox-integration-test.js │ │ │ │ ├── LogBox-test.js │ │ │ │ ├── LogBoxInspectorContainer-test.js │ │ │ │ ├── LogBoxNotificationContainer-test.js │ │ │ │ ├── __fixtures__ │ │ │ │ └── ReactWarningFixtures.js │ │ │ │ └── __snapshots__ │ │ │ │ ├── LogBoxInspectorContainer-test.js.snap │ │ │ │ └── LogBoxNotificationContainer-test.js.snap │ │ ├── Modal │ │ │ ├── Modal.d.ts │ │ │ ├── Modal.js │ │ │ ├── ModalInjection.js │ │ │ ├── NativeModalManager.js │ │ │ ├── RCTModalHostViewNativeComponent.js │ │ │ └── __tests__ │ │ │ │ ├── Modal-test.js │ │ │ │ └── __snapshots__ │ │ │ │ └── Modal-test.js.snap │ │ ├── MutationObserver │ │ │ ├── MutationObserver.js │ │ │ ├── MutationObserverManager.js │ │ │ ├── MutationRecord.js │ │ │ ├── NativeMutationObserver.cpp │ │ │ ├── NativeMutationObserver.h │ │ │ ├── NativeMutationObserver.js │ │ │ └── __mocks__ │ │ │ │ └── NativeMutationObserver.js │ │ ├── NativeAnimation │ │ │ ├── Drivers │ │ │ │ ├── RCTAnimationDriver.h │ │ │ │ ├── RCTDecayAnimation.h │ │ │ │ ├── RCTDecayAnimation.mm │ │ │ │ ├── RCTEventAnimation.h │ │ │ │ ├── RCTEventAnimation.mm │ │ │ │ ├── RCTFrameAnimation.h │ │ │ │ ├── RCTFrameAnimation.mm │ │ │ │ ├── RCTSpringAnimation.h │ │ │ │ └── RCTSpringAnimation.mm │ │ │ ├── Nodes │ │ │ │ ├── RCTAdditionAnimatedNode.h │ │ │ │ ├── RCTAdditionAnimatedNode.mm │ │ │ │ ├── RCTAnimatedNode.h │ │ │ │ ├── RCTAnimatedNode.mm │ │ │ │ ├── RCTColorAnimatedNode.h │ │ │ │ ├── RCTColorAnimatedNode.mm │ │ │ │ ├── RCTDiffClampAnimatedNode.h │ │ │ │ ├── RCTDiffClampAnimatedNode.mm │ │ │ │ ├── RCTDivisionAnimatedNode.h │ │ │ │ ├── RCTDivisionAnimatedNode.mm │ │ │ │ ├── RCTInterpolationAnimatedNode.h │ │ │ │ ├── RCTInterpolationAnimatedNode.mm │ │ │ │ ├── RCTModuloAnimatedNode.h │ │ │ │ ├── RCTModuloAnimatedNode.mm │ │ │ │ ├── RCTMultiplicationAnimatedNode.h │ │ │ │ ├── RCTMultiplicationAnimatedNode.mm │ │ │ │ ├── RCTObjectAnimatedNode.h │ │ │ │ ├── RCTObjectAnimatedNode.mm │ │ │ │ ├── RCTPropsAnimatedNode.h │ │ │ │ ├── RCTPropsAnimatedNode.mm │ │ │ │ ├── RCTStyleAnimatedNode.h │ │ │ │ ├── RCTStyleAnimatedNode.mm │ │ │ │ ├── RCTSubtractionAnimatedNode.h │ │ │ │ ├── RCTSubtractionAnimatedNode.mm │ │ │ │ ├── RCTTrackingAnimatedNode.h │ │ │ │ ├── RCTTrackingAnimatedNode.mm │ │ │ │ ├── RCTTransformAnimatedNode.h │ │ │ │ ├── RCTTransformAnimatedNode.mm │ │ │ │ ├── RCTValueAnimatedNode.h │ │ │ │ └── RCTValueAnimatedNode.mm │ │ │ ├── RCTAnimationPlugins.h │ │ │ ├── RCTAnimationPlugins.mm │ │ │ ├── RCTAnimationUtils.h │ │ │ ├── RCTAnimationUtils.mm │ │ │ ├── RCTNativeAnimatedModule.h │ │ │ ├── RCTNativeAnimatedModule.mm │ │ │ ├── RCTNativeAnimatedNodesManager.h │ │ │ ├── RCTNativeAnimatedNodesManager.mm │ │ │ ├── RCTNativeAnimatedTurboModule.h │ │ │ ├── RCTNativeAnimatedTurboModule.mm │ │ │ └── React-RCTAnimation.podspec │ │ ├── NativeComponent │ │ │ ├── BaseViewConfig.android.js │ │ │ ├── BaseViewConfig.ios.js │ │ │ ├── BaseViewConfig.js.flow │ │ │ ├── NativeComponentRegistry.js │ │ │ ├── NativeComponentRegistryUnstable.js │ │ │ ├── PlatformBaseViewConfig.js │ │ │ ├── StaticViewConfigValidator.js │ │ │ ├── ViewConfig.js │ │ │ ├── ViewConfigIgnore.js │ │ │ └── __tests__ │ │ │ │ └── StaticViewConfigValidator-test.js │ │ ├── NativeModules │ │ │ └── specs │ │ │ │ ├── NativeAnimationsDebugModule.js │ │ │ │ ├── NativeDevMenu.js │ │ │ │ ├── NativeDevSettings.js │ │ │ │ ├── NativeDeviceEventManager.js │ │ │ │ ├── NativeDialogManagerAndroid.js │ │ │ │ ├── NativeLogBox.js │ │ │ │ ├── NativeRedBox.js │ │ │ │ └── NativeSourceCode.js │ │ ├── Network │ │ │ ├── FormData.js │ │ │ ├── NativeNetworkingAndroid.js │ │ │ ├── NativeNetworkingIOS.js │ │ │ ├── RCTDataRequestHandler.h │ │ │ ├── RCTDataRequestHandler.mm │ │ │ ├── RCTFileRequestHandler.h │ │ │ ├── RCTFileRequestHandler.mm │ │ │ ├── RCTHTTPRequestHandler.h │ │ │ ├── RCTHTTPRequestHandler.mm │ │ │ ├── RCTNetworkPlugins.h │ │ │ ├── RCTNetworkPlugins.mm │ │ │ ├── RCTNetworkTask.h │ │ │ ├── RCTNetworkTask.mm │ │ │ ├── RCTNetworking.android.js │ │ │ ├── RCTNetworking.h │ │ │ ├── RCTNetworking.ios.js │ │ │ ├── RCTNetworking.js.flow │ │ │ ├── RCTNetworking.mm │ │ │ ├── React-RCTNetwork.podspec │ │ │ ├── XHRInterceptor.js │ │ │ ├── XMLHttpRequest.js │ │ │ ├── __tests__ │ │ │ │ ├── FormData-test.js │ │ │ │ └── XMLHttpRequest-test.js │ │ │ ├── convertRequestBody.js │ │ │ └── fetch.js │ │ ├── NewAppScreen │ │ │ ├── components │ │ │ │ ├── Colors.js │ │ │ │ ├── DebugInstructions.js │ │ │ │ ├── Header.js │ │ │ │ ├── HermesBadge.js │ │ │ │ ├── LearnMoreLinks.js │ │ │ │ ├── ReloadInstructions.js │ │ │ │ └── logo.png │ │ │ └── index.js │ │ ├── Performance │ │ │ ├── NativeJSCSamplingProfiler.js │ │ │ ├── QuickPerformanceLogger.js │ │ │ ├── SamplingProfiler.js │ │ │ ├── Systrace.d.ts │ │ │ └── Systrace.js │ │ ├── PermissionsAndroid │ │ │ ├── NativePermissionsAndroid.js │ │ │ ├── PermissionsAndroid.d.ts │ │ │ └── PermissionsAndroid.js │ │ ├── Pressability │ │ │ ├── HoverState.js │ │ │ ├── Pressability.js │ │ │ ├── PressabilityDebug.js │ │ │ ├── PressabilityPerformanceEventEmitter.js │ │ │ ├── PressabilityTypes.js │ │ │ ├── __tests__ │ │ │ │ └── Pressability-test.js │ │ │ └── usePressability.js │ │ ├── Promise.js │ │ ├── PushNotificationIOS │ │ │ ├── NativePushNotificationManagerIOS.js │ │ │ ├── PushNotificationIOS.d.ts │ │ │ ├── PushNotificationIOS.js │ │ │ ├── RCTPushNotificationManager.h │ │ │ ├── RCTPushNotificationManager.mm │ │ │ ├── RCTPushNotificationPlugins.h │ │ │ ├── RCTPushNotificationPlugins.mm │ │ │ └── React-RCTPushNotification.podspec │ │ ├── ReactNative │ │ │ ├── AppContainer-dev.js │ │ │ ├── AppContainer-prod.js │ │ │ ├── AppContainer.js │ │ │ ├── AppRegistry.d.ts │ │ │ ├── AppRegistry.js │ │ │ ├── BridgelessUIManager.js │ │ │ ├── DisplayMode.js │ │ │ ├── FabricUIManager.js │ │ │ ├── HeadlessJsTaskError.js │ │ │ ├── I18nManager.d.ts │ │ │ ├── I18nManager.js │ │ │ ├── NativeHeadlessJsTaskSupport.js │ │ │ ├── NativeI18nManager.js │ │ │ ├── NativeUIManager.js │ │ │ ├── PaperUIManager.js │ │ │ ├── ReactFabricInternals.js │ │ │ ├── ReactFabricPublicInstance │ │ │ │ ├── ReactFabricHostComponent.js │ │ │ │ ├── ReactFabricPublicInstance.js │ │ │ │ ├── ReactFabricPublicInstanceUtils.js │ │ │ │ ├── ReactNativeAttributePayload.js │ │ │ │ ├── __tests__ │ │ │ │ │ └── ReactFabricPublicInstance-test.js │ │ │ │ └── warnForStyleProps.js │ │ │ ├── ReactNativeFeatureFlags.js │ │ │ ├── ReactNativeRuntimeDiagnostics.js │ │ │ ├── RendererImplementation.js │ │ │ ├── RendererProxy.d.ts │ │ │ ├── RendererProxy.js │ │ │ ├── RootTag.d.ts │ │ │ ├── RootTag.js │ │ │ ├── UIManager.d.ts │ │ │ ├── UIManager.js │ │ │ ├── UIManagerProperties.js │ │ │ ├── __mocks__ │ │ │ │ └── FabricUIManager.js │ │ │ ├── __tests__ │ │ │ │ └── FabricUIManager-test.js │ │ │ ├── getCachedComponentWithDebugName.js │ │ │ ├── getNativeComponentAttributes.js │ │ │ ├── renderApplication.js │ │ │ ├── requireNativeComponent.d.ts │ │ │ └── requireNativeComponent.js │ │ ├── ReactPrivate │ │ │ ├── README │ │ │ ├── ReactNativePrivateInitializeCore.js │ │ │ └── ReactNativePrivateInterface.js │ │ ├── Renderer │ │ │ ├── README.md │ │ │ ├── implementations │ │ │ │ ├── ReactFabric-dev.js │ │ │ │ ├── ReactFabric-prod.js │ │ │ │ ├── ReactFabric-profiling.js │ │ │ │ ├── ReactNativeRenderer-dev.js │ │ │ │ ├── ReactNativeRenderer-prod.js │ │ │ │ └── ReactNativeRenderer-profiling.js │ │ │ └── shims │ │ │ │ ├── ReactFabric.js │ │ │ │ ├── ReactFeatureFlags.js │ │ │ │ ├── ReactNative.js │ │ │ │ ├── ReactNativeTypes.js │ │ │ │ ├── ReactNativeViewConfigRegistry.js │ │ │ │ └── createReactNativeComponentClass.js │ │ ├── Required │ │ │ ├── RCTRequired.h │ │ │ └── RCTRequired.podspec │ │ ├── Settings │ │ │ ├── NativeSettingsManager.js │ │ │ ├── RCTSettingsManager.h │ │ │ ├── RCTSettingsManager.mm │ │ │ ├── RCTSettingsPlugins.h │ │ │ ├── RCTSettingsPlugins.mm │ │ │ ├── React-RCTSettings.podspec │ │ │ ├── Settings.d.ts │ │ │ ├── Settings.ios.js │ │ │ └── Settings.js │ │ ├── Share │ │ │ ├── NativeShareModule.js │ │ │ ├── Share.d.ts │ │ │ └── Share.js │ │ ├── StyleSheet │ │ │ ├── EdgeInsetsPropType.js │ │ │ ├── PlatformColorValueTypes.android.js │ │ │ ├── PlatformColorValueTypes.d.ts │ │ │ ├── PlatformColorValueTypes.ios.js │ │ │ ├── PlatformColorValueTypes.js.flow │ │ │ ├── PlatformColorValueTypesIOS.d.ts │ │ │ ├── PlatformColorValueTypesIOS.ios.js │ │ │ ├── PlatformColorValueTypesIOS.js │ │ │ ├── PointPropType.js │ │ │ ├── Rect.js │ │ │ ├── StyleSheet.d.ts │ │ │ ├── StyleSheet.js │ │ │ ├── StyleSheetTypes.d.ts │ │ │ ├── StyleSheetTypes.js │ │ │ ├── __flowtests__ │ │ │ │ └── StyleSheet-flowtest.js │ │ │ ├── __tests__ │ │ │ │ ├── StyleSheet-test.js │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── processAspectRatio-test.js.snap │ │ │ │ │ ├── processTransform-test.js.snap │ │ │ │ │ └── processTransformOrigin-test.js.snap │ │ │ │ ├── flattenStyle-test.js │ │ │ │ ├── normalizeColor-test.js │ │ │ │ ├── processAspectRatio-test.js │ │ │ │ ├── processColor-test.js │ │ │ │ ├── processColorArray-test.js │ │ │ │ ├── processFontVariant-test.js │ │ │ │ ├── processTransform-test.js │ │ │ │ ├── processTransformOrigin-test.js │ │ │ │ ├── setNormalizedColorAlpha-test.js │ │ │ │ └── splitLayoutProps-test.js │ │ │ ├── flattenStyle.js │ │ │ ├── normalizeColor.js │ │ │ ├── private │ │ │ │ ├── _StyleSheetTypesOverrides.js │ │ │ │ └── _TransformStyle.js │ │ │ ├── processAspectRatio.js │ │ │ ├── processColor.d.ts │ │ │ ├── processColor.js │ │ │ ├── processColorArray.js │ │ │ ├── processFontVariant.js │ │ │ ├── processTransform.js │ │ │ ├── processTransformOrigin.js │ │ │ ├── setNormalizedColorAlpha.js │ │ │ └── splitLayoutProps.js │ │ ├── Text │ │ │ ├── BaseText │ │ │ │ ├── RCTBaseTextShadowView.h │ │ │ │ ├── RCTBaseTextShadowView.mm │ │ │ │ ├── RCTBaseTextViewManager.h │ │ │ │ └── RCTBaseTextViewManager.mm │ │ │ ├── RCTConvert+Text.h │ │ │ ├── RCTConvert+Text.mm │ │ │ ├── RCTTextAttributes.h │ │ │ ├── RCTTextAttributes.mm │ │ │ ├── RCTTextTransform.h │ │ │ ├── RawText │ │ │ │ ├── RCTRawTextShadowView.h │ │ │ │ ├── RCTRawTextShadowView.mm │ │ │ │ ├── RCTRawTextViewManager.h │ │ │ │ └── RCTRawTextViewManager.mm │ │ │ ├── React-RCTText.podspec │ │ │ ├── Text.d.ts │ │ │ ├── Text.js │ │ │ ├── Text │ │ │ │ ├── NSTextStorage+FontScaling.h │ │ │ │ ├── NSTextStorage+FontScaling.m │ │ │ │ ├── RCTDynamicTypeRamp.h │ │ │ │ ├── RCTDynamicTypeRamp.mm │ │ │ │ ├── RCTTextShadowView.h │ │ │ │ ├── RCTTextShadowView.mm │ │ │ │ ├── RCTTextView.h │ │ │ │ ├── RCTTextView.mm │ │ │ │ ├── RCTTextViewManager.h │ │ │ │ └── RCTTextViewManager.mm │ │ │ ├── TextAncestor.js │ │ │ ├── TextInput │ │ │ │ ├── Multiline │ │ │ │ │ ├── RCTMultilineTextInputView.h │ │ │ │ │ ├── RCTMultilineTextInputView.mm │ │ │ │ │ ├── RCTMultilineTextInputViewManager.h │ │ │ │ │ ├── RCTMultilineTextInputViewManager.mm │ │ │ │ │ ├── RCTUITextView.h │ │ │ │ │ └── RCTUITextView.mm │ │ │ │ ├── RCTBackedTextInputDelegate.h │ │ │ │ ├── RCTBackedTextInputDelegateAdapter.h │ │ │ │ ├── RCTBackedTextInputDelegateAdapter.mm │ │ │ │ ├── RCTBackedTextInputViewProtocol.h │ │ │ │ ├── RCTBaseTextInputShadowView.h │ │ │ │ ├── RCTBaseTextInputShadowView.mm │ │ │ │ ├── RCTBaseTextInputView.h │ │ │ │ ├── RCTBaseTextInputView.mm │ │ │ │ ├── RCTBaseTextInputViewManager.h │ │ │ │ ├── RCTBaseTextInputViewManager.mm │ │ │ │ ├── RCTInputAccessoryShadowView.h │ │ │ │ ├── RCTInputAccessoryShadowView.mm │ │ │ │ ├── RCTInputAccessoryView.h │ │ │ │ ├── RCTInputAccessoryView.mm │ │ │ │ ├── RCTInputAccessoryViewContent.h │ │ │ │ ├── RCTInputAccessoryViewContent.mm │ │ │ │ ├── RCTInputAccessoryViewManager.h │ │ │ │ ├── RCTInputAccessoryViewManager.mm │ │ │ │ ├── RCTTextSelection.h │ │ │ │ ├── RCTTextSelection.mm │ │ │ │ └── Singleline │ │ │ │ │ ├── RCTSinglelineTextInputView.h │ │ │ │ │ ├── RCTSinglelineTextInputView.mm │ │ │ │ │ ├── RCTSinglelineTextInputViewManager.h │ │ │ │ │ ├── RCTSinglelineTextInputViewManager.mm │ │ │ │ │ ├── RCTUITextField.h │ │ │ │ │ └── RCTUITextField.mm │ │ │ ├── TextNativeComponent.js │ │ │ ├── TextProps.js │ │ │ ├── VirtualText │ │ │ │ ├── RCTVirtualTextShadowView.h │ │ │ │ ├── RCTVirtualTextShadowView.mm │ │ │ │ ├── RCTVirtualTextView.h │ │ │ │ ├── RCTVirtualTextView.mm │ │ │ │ ├── RCTVirtualTextViewManager.h │ │ │ │ └── RCTVirtualTextViewManager.mm │ │ │ └── __tests__ │ │ │ │ └── Text-test.js │ │ ├── TurboModule │ │ │ ├── RCTExport.d.ts │ │ │ ├── RCTExport.js │ │ │ ├── TurboModuleRegistry.d.ts │ │ │ ├── TurboModuleRegistry.js │ │ │ └── samples │ │ │ │ └── NativeSampleTurboModule.js │ │ ├── TypeSafety │ │ │ ├── RCTConvertHelpers.h │ │ │ ├── RCTConvertHelpers.mm │ │ │ ├── RCTTypeSafety.podspec │ │ │ ├── RCTTypedModuleConstants.h │ │ │ └── RCTTypedModuleConstants.mm │ │ ├── Types │ │ │ ├── CodegenTypes.js │ │ │ ├── CoreEventTypes.d.ts │ │ │ ├── CoreEventTypes.js │ │ │ ├── ReactDevToolsTypes.js │ │ │ ├── RootTagTypes.js │ │ │ └── UIManagerJSInterface.js │ │ ├── UTFSequence.js │ │ ├── Utilities │ │ │ ├── Appearance.d.ts │ │ │ ├── Appearance.js │ │ │ ├── BackHandler.android.js │ │ │ ├── BackHandler.d.ts │ │ │ ├── BackHandler.ios.js │ │ │ ├── BackHandler.js.flow │ │ │ ├── DebugEnvironment.js │ │ │ ├── DevSettings.d.ts │ │ │ ├── DevSettings.js │ │ │ ├── DeviceInfo.js │ │ │ ├── Dimensions.d.ts │ │ │ ├── Dimensions.js │ │ │ ├── FeatureDetection.js │ │ │ ├── GlobalPerformanceLogger.js │ │ │ ├── HMRClient.js │ │ │ ├── HMRClientProdShim.js │ │ │ ├── IPerformanceLogger.d.ts │ │ │ ├── IPerformanceLogger.js │ │ │ ├── LoadingView.android.js │ │ │ ├── LoadingView.ios.js │ │ │ ├── LoadingView.js │ │ │ ├── NativeAppearance.js │ │ │ ├── NativeDevLoadingView.js │ │ │ ├── NativeDeviceInfo.js │ │ │ ├── NativePlatformConstantsAndroid.js │ │ │ ├── NativePlatformConstantsIOS.js │ │ │ ├── PerformanceLoggerContext.js │ │ │ ├── PixelRatio.d.ts │ │ │ ├── PixelRatio.js │ │ │ ├── Platform.android.js │ │ │ ├── Platform.d.ts │ │ │ ├── Platform.flow.js │ │ │ ├── Platform.ios.js │ │ │ ├── Platform.js.flow │ │ │ ├── PolyfillFunctions.js │ │ │ ├── RCTLog.js │ │ │ ├── ReactNativeTestTools.js │ │ │ ├── SceneTracker.js │ │ │ ├── __mocks__ │ │ │ │ ├── BackHandler.js │ │ │ │ ├── GlobalPerformanceLogger.js │ │ │ │ └── PixelRatio.js │ │ │ ├── __tests__ │ │ │ │ ├── DeviceInfo-test.js │ │ │ │ ├── Dimensions-test.js │ │ │ │ ├── PerformanceLogger-test.js │ │ │ │ ├── PixelRatio-test.js │ │ │ │ ├── Platform-test.js │ │ │ │ ├── ReactNativeTestTools-test.js │ │ │ │ ├── SceneTracker-test.js │ │ │ │ ├── binaryToBase64-test.js │ │ │ │ ├── codegenNativeComponent-test.js │ │ │ │ ├── deepFreezeAndThrowOnMutationInDev-test.js │ │ │ │ ├── infoLog-test.js │ │ │ │ ├── logError-test.js │ │ │ │ ├── mapWithSeparator-test.js │ │ │ │ ├── stringifySafe-test.js │ │ │ │ ├── useMergeRefs-test.js │ │ │ │ ├── useRefEffect-test.js │ │ │ │ ├── verifyComponentAttributeEquivalence-test.js │ │ │ │ └── warnOnce-test.js │ │ │ ├── binaryToBase64.js │ │ │ ├── codegenNativeCommands.js │ │ │ ├── codegenNativeComponent.js │ │ │ ├── createPerformanceLogger.js │ │ │ ├── deepFreezeAndThrowOnMutationInDev.js │ │ │ ├── defineLazyObjectProperty.js │ │ │ ├── differ │ │ │ │ ├── __tests__ │ │ │ │ │ ├── deepDiffer-test.js │ │ │ │ │ └── matricesDiffer-test.js │ │ │ │ ├── deepDiffer.js │ │ │ │ ├── insetsDiffer.js │ │ │ │ ├── matricesDiffer.js │ │ │ │ ├── pointsDiffer.js │ │ │ │ └── sizesDiffer.js │ │ │ ├── dismissKeyboard.js │ │ │ ├── infoLog.js │ │ │ ├── logError.js │ │ │ ├── mapWithSeparator.js │ │ │ ├── stringifySafe.js │ │ │ ├── useColorScheme.js │ │ │ ├── useMergeRefs.js │ │ │ ├── useRefEffect.js │ │ │ ├── useWindowDimensions.js │ │ │ ├── verifyComponentAttributeEquivalence.js │ │ │ └── warnOnce.js │ │ ├── Vibration │ │ │ ├── NativeVibration.js │ │ │ ├── RCTVibration.h │ │ │ ├── RCTVibration.mm │ │ │ ├── RCTVibrationPlugins.h │ │ │ ├── RCTVibrationPlugins.mm │ │ │ ├── React-RCTVibration.podspec │ │ │ ├── Vibration.d.ts │ │ │ └── Vibration.js │ │ ├── WebPerformance │ │ │ ├── BoundedConsumableBuffer.h │ │ │ ├── EventCounts.js │ │ │ ├── MemoryInfo.js │ │ │ ├── NativePerformance.cpp │ │ │ ├── NativePerformance.h │ │ │ ├── NativePerformance.js │ │ │ ├── NativePerformanceObserver.cpp │ │ │ ├── NativePerformanceObserver.h │ │ │ ├── NativePerformanceObserver.js │ │ │ ├── Performance.js │ │ │ ├── PerformanceEntry.js │ │ │ ├── PerformanceEntryReporter.cpp │ │ │ ├── PerformanceEntryReporter.h │ │ │ ├── PerformanceEventTiming.js │ │ │ ├── PerformanceObserver.js │ │ │ ├── RawPerformanceEntry.js │ │ │ ├── ReactNativeStartupTiming.js │ │ │ ├── __mocks__ │ │ │ │ ├── NativePerformance.js │ │ │ │ └── NativePerformanceObserver.js │ │ │ └── __tests__ │ │ │ │ ├── BoundedConsumableBufferTest.cpp │ │ │ │ ├── EventCounts-test.js │ │ │ │ ├── NativePerformanceMock-test.js │ │ │ │ ├── NativePerformanceObserverMock-test.js │ │ │ │ ├── Performance-test.js │ │ │ │ ├── PerformanceEntryReporterTest.cpp │ │ │ │ └── PerformanceObserver-test.js │ │ ├── WebSocket │ │ │ ├── NativeWebSocketModule.js │ │ │ ├── RCTReconnectingWebSocket.h │ │ │ ├── RCTReconnectingWebSocket.m │ │ │ ├── WebSocket.js │ │ │ ├── WebSocketEvent.js │ │ │ ├── WebSocketInterceptor.js │ │ │ ├── __mocks__ │ │ │ │ └── event-target-shim.js │ │ │ └── __tests__ │ │ │ │ └── WebSocket-test.js │ │ ├── Wrapper │ │ │ ├── Example │ │ │ │ ├── RCTWrapperExampleView.h │ │ │ │ ├── RCTWrapperExampleView.m │ │ │ │ ├── RCTWrapperExampleViewController.h │ │ │ │ ├── RCTWrapperExampleViewController.m │ │ │ │ ├── RCTWrapperReactRootViewController.h │ │ │ │ ├── RCTWrapperReactRootViewController.m │ │ │ │ ├── RCTWrapperReactRootViewManager.h │ │ │ │ └── RCTWrapperReactRootViewManager.m │ │ │ ├── RCTWrapper.h │ │ │ ├── RCTWrapperShadowView.h │ │ │ ├── RCTWrapperShadowView.m │ │ │ ├── RCTWrapperView.h │ │ │ ├── RCTWrapperView.m │ │ │ ├── RCTWrapperViewControllerHostingView.h │ │ │ ├── RCTWrapperViewControllerHostingView.m │ │ │ ├── RCTWrapperViewManager.h │ │ │ └── RCTWrapperViewManager.m │ │ ├── YellowBox │ │ │ ├── YellowBoxDeprecated.d.ts │ │ │ ├── YellowBoxDeprecated.js │ │ │ └── __tests__ │ │ │ │ └── YellowBoxDeprecated-test.js │ │ ├── __flowtests__ │ │ │ └── ReactNativeTypes-flowtest.js │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ └── public-api-test.js.snap │ │ │ └── public-api-test.js │ │ ├── promiseRejectionTrackingOptions.js │ │ └── vendor │ │ │ ├── core │ │ │ ├── ErrorUtils.d.ts │ │ │ └── ErrorUtils.js │ │ │ └── emitter │ │ │ ├── EventEmitter.d.ts │ │ │ ├── EventEmitter.js │ │ │ ├── __flowtests__ │ │ │ └── EventEmitter-flowtest.js │ │ │ └── __tests__ │ │ │ └── EventEmitter-test.js │ ├── React-Core.podspec │ ├── React.podspec │ ├── React │ │ ├── Base │ │ │ ├── RCTAssert.h │ │ │ ├── RCTAssert.m │ │ │ ├── RCTBridge+Private.h │ │ │ ├── RCTBridge.h │ │ │ ├── RCTBridge.mm │ │ │ ├── RCTBridgeConstants.h │ │ │ ├── RCTBridgeConstants.m │ │ │ ├── RCTBridgeDelegate.h │ │ │ ├── RCTBridgeMethod.h │ │ │ ├── RCTBridgeModule.h │ │ │ ├── RCTBridgeModuleDecorator.h │ │ │ ├── RCTBridgeModuleDecorator.m │ │ │ ├── RCTBridgeProxy.h │ │ │ ├── RCTBridgeProxy.mm │ │ │ ├── RCTBundleManager.h │ │ │ ├── RCTBundleManager.m │ │ │ ├── RCTBundleURLProvider.h │ │ │ ├── RCTBundleURLProvider.mm │ │ │ ├── RCTCallableJSModules.m │ │ │ ├── RCTComponentEvent.h │ │ │ ├── RCTComponentEvent.m │ │ │ ├── RCTConstants.h │ │ │ ├── RCTConstants.m │ │ │ ├── RCTConvert.h │ │ │ ├── RCTConvert.m │ │ │ ├── RCTCxxConvert.h │ │ │ ├── RCTCxxConvert.m │ │ │ ├── RCTDefines.h │ │ │ ├── RCTDisplayLink.h │ │ │ ├── RCTDisplayLink.m │ │ │ ├── RCTErrorCustomizer.h │ │ │ ├── RCTErrorInfo.h │ │ │ ├── RCTErrorInfo.m │ │ │ ├── RCTEventDispatcher.m │ │ │ ├── RCTEventDispatcherProtocol.h │ │ │ ├── RCTFrameUpdate.h │ │ │ ├── RCTFrameUpdate.m │ │ │ ├── RCTImageSource.h │ │ │ ├── RCTImageSource.m │ │ │ ├── RCTInitializing.h │ │ │ ├── RCTInvalidating.h │ │ │ ├── RCTJSStackFrame.h │ │ │ ├── RCTJSStackFrame.m │ │ │ ├── RCTJSThread.h │ │ │ ├── RCTJSThread.m │ │ │ ├── RCTJavaScriptExecutor.h │ │ │ ├── RCTJavaScriptLoader.h │ │ │ ├── RCTJavaScriptLoader.mm │ │ │ ├── RCTKeyCommands.h │ │ │ ├── RCTKeyCommands.m │ │ │ ├── RCTLog.h │ │ │ ├── RCTLog.mm │ │ │ ├── RCTManagedPointer.h │ │ │ ├── RCTManagedPointer.mm │ │ │ ├── RCTMockDef.h │ │ │ ├── RCTModuleData.h │ │ │ ├── RCTModuleData.mm │ │ │ ├── RCTModuleMethod.h │ │ │ ├── RCTModuleMethod.mm │ │ │ ├── RCTModuleRegistry.m │ │ │ ├── RCTMultipartDataTask.h │ │ │ ├── RCTMultipartDataTask.m │ │ │ ├── RCTMultipartStreamReader.h │ │ │ ├── RCTMultipartStreamReader.m │ │ │ ├── RCTNullability.h │ │ │ ├── RCTPLTag.h │ │ │ ├── RCTParserUtils.h │ │ │ ├── RCTParserUtils.m │ │ │ ├── RCTPerformanceLogger.h │ │ │ ├── RCTPerformanceLogger.mm │ │ │ ├── RCTPerformanceLoggerLabels.h │ │ │ ├── RCTPerformanceLoggerLabels.m │ │ │ ├── RCTRedBoxSetEnabled.h │ │ │ ├── RCTRedBoxSetEnabled.m │ │ │ ├── RCTReloadCommand.h │ │ │ ├── RCTReloadCommand.m │ │ │ ├── RCTRootContentView.h │ │ │ ├── RCTRootContentView.m │ │ │ ├── RCTRootView.h │ │ │ ├── RCTRootView.m │ │ │ ├── RCTRootViewDelegate.h │ │ │ ├── RCTRootViewInternal.h │ │ │ ├── RCTTouchEvent.h │ │ │ ├── RCTTouchEvent.m │ │ │ ├── RCTTouchHandler.h │ │ │ ├── RCTTouchHandler.m │ │ │ ├── RCTTurboModuleRegistry.h │ │ │ ├── RCTURLRequestDelegate.h │ │ │ ├── RCTURLRequestHandler.h │ │ │ ├── RCTUtils.h │ │ │ ├── RCTUtils.m │ │ │ ├── RCTUtilsUIOverride.h │ │ │ ├── RCTUtilsUIOverride.m │ │ │ ├── RCTVersion.h │ │ │ ├── RCTVersion.m │ │ │ ├── RCTViewRegistry.m │ │ │ └── Surface │ │ │ │ ├── RCTSurface.h │ │ │ │ ├── RCTSurface.mm │ │ │ │ ├── RCTSurfaceDelegate.h │ │ │ │ ├── RCTSurfaceProtocol.h │ │ │ │ ├── RCTSurfaceRootShadowView.h │ │ │ │ ├── RCTSurfaceRootShadowView.m │ │ │ │ ├── RCTSurfaceRootShadowViewDelegate.h │ │ │ │ ├── RCTSurfaceRootView.h │ │ │ │ ├── RCTSurfaceRootView.mm │ │ │ │ ├── RCTSurfaceStage.h │ │ │ │ ├── RCTSurfaceStage.m │ │ │ │ ├── RCTSurfaceView+Internal.h │ │ │ │ ├── RCTSurfaceView.h │ │ │ │ ├── RCTSurfaceView.mm │ │ │ │ └── SurfaceHostingView │ │ │ │ ├── RCTSurfaceHostingProxyRootView.h │ │ │ │ ├── RCTSurfaceHostingProxyRootView.mm │ │ │ │ ├── RCTSurfaceHostingView.h │ │ │ │ ├── RCTSurfaceHostingView.mm │ │ │ │ ├── RCTSurfaceSizeMeasureMode.h │ │ │ │ └── RCTSurfaceSizeMeasureMode.mm │ │ ├── CoreModules │ │ │ ├── CoreModulesPlugins.h │ │ │ ├── CoreModulesPlugins.mm │ │ │ ├── RCTAccessibilityManager+Internal.h │ │ │ ├── RCTAccessibilityManager.h │ │ │ ├── RCTAccessibilityManager.mm │ │ │ ├── RCTActionSheetManager.h │ │ │ ├── RCTActionSheetManager.mm │ │ │ ├── RCTAlertController.h │ │ │ ├── RCTAlertController.mm │ │ │ ├── RCTAlertManager.h │ │ │ ├── RCTAlertManager.mm │ │ │ ├── RCTAppState.h │ │ │ ├── RCTAppState.mm │ │ │ ├── RCTAppearance.h │ │ │ ├── RCTAppearance.mm │ │ │ ├── RCTClipboard.h │ │ │ ├── RCTClipboard.mm │ │ │ ├── RCTDevLoadingView.h │ │ │ ├── RCTDevLoadingView.mm │ │ │ ├── RCTDevMenu.h │ │ │ ├── RCTDevMenu.mm │ │ │ ├── RCTDevSettings.h │ │ │ ├── RCTDevSettings.mm │ │ │ ├── RCTDeviceInfo.h │ │ │ ├── RCTDeviceInfo.mm │ │ │ ├── RCTEventDispatcher.h │ │ │ ├── RCTEventDispatcher.mm │ │ │ ├── RCTExceptionsManager.h │ │ │ ├── RCTExceptionsManager.mm │ │ │ ├── RCTFPSGraph.h │ │ │ ├── RCTFPSGraph.mm │ │ │ ├── RCTI18nManager.h │ │ │ ├── RCTI18nManager.mm │ │ │ ├── RCTKeyboardObserver.h │ │ │ ├── RCTKeyboardObserver.mm │ │ │ ├── RCTLogBox.h │ │ │ ├── RCTLogBox.mm │ │ │ ├── RCTLogBoxView.h │ │ │ ├── RCTLogBoxView.mm │ │ │ ├── RCTPerfMonitor.mm │ │ │ ├── RCTPlatform.h │ │ │ ├── RCTPlatform.mm │ │ │ ├── RCTRedBox.h │ │ │ ├── RCTRedBox.mm │ │ │ ├── RCTSourceCode.h │ │ │ ├── RCTSourceCode.mm │ │ │ ├── RCTStatusBarManager.h │ │ │ ├── RCTStatusBarManager.mm │ │ │ ├── RCTTiming.h │ │ │ ├── RCTTiming.mm │ │ │ ├── RCTWebSocketExecutor.h │ │ │ ├── RCTWebSocketExecutor.mm │ │ │ ├── RCTWebSocketModule.h │ │ │ ├── RCTWebSocketModule.mm │ │ │ └── React-CoreModules.podspec │ │ ├── CxxBridge │ │ │ ├── JSCExecutorFactory.h │ │ │ ├── JSCExecutorFactory.mm │ │ │ ├── NSDataBigString.h │ │ │ ├── NSDataBigString.mm │ │ │ ├── RCTCxxBridge.mm │ │ │ ├── RCTCxxBridgeDelegate.h │ │ │ ├── RCTJSIExecutorRuntimeInstaller.h │ │ │ ├── RCTJSIExecutorRuntimeInstaller.mm │ │ │ ├── RCTMessageThread.h │ │ │ ├── RCTMessageThread.mm │ │ │ ├── RCTObjcExecutor.h │ │ │ └── RCTObjcExecutor.mm │ │ ├── CxxLogUtils │ │ │ ├── RCTDefaultCxxLogFunction.h │ │ │ └── RCTDefaultCxxLogFunction.mm │ │ ├── CxxModule │ │ │ ├── DispatchMessageQueueThread.h │ │ │ ├── RCTCxxMethod.h │ │ │ ├── RCTCxxMethod.mm │ │ │ ├── RCTCxxModule.h │ │ │ ├── RCTCxxModule.mm │ │ │ ├── RCTCxxUtils.h │ │ │ ├── RCTCxxUtils.mm │ │ │ ├── RCTNativeModule.h │ │ │ └── RCTNativeModule.mm │ │ ├── CxxUtils │ │ │ ├── RCTFollyConvert.h │ │ │ └── RCTFollyConvert.mm │ │ ├── DevSupport │ │ │ ├── RCTDevLoadingViewProtocol.h │ │ │ ├── RCTDevLoadingViewSetEnabled.h │ │ │ ├── RCTDevLoadingViewSetEnabled.m │ │ │ ├── RCTInspectorDevServerHelper.h │ │ │ ├── RCTInspectorDevServerHelper.mm │ │ │ ├── RCTPackagerClient.h │ │ │ ├── RCTPackagerClient.m │ │ │ ├── RCTPackagerConnection.h │ │ │ └── RCTPackagerConnection.mm │ │ ├── Fabric │ │ │ ├── Mounting │ │ │ │ ├── ComponentViews │ │ │ │ │ ├── ActivityIndicator │ │ │ │ │ │ ├── RCTActivityIndicatorViewComponentView.h │ │ │ │ │ │ └── RCTActivityIndicatorViewComponentView.mm │ │ │ │ │ ├── DebuggingOverlay │ │ │ │ │ │ ├── RCTDebuggingOverlayComponentView.h │ │ │ │ │ │ └── RCTDebuggingOverlayComponentView.mm │ │ │ │ │ ├── Image │ │ │ │ │ │ ├── RCTImageComponentView.h │ │ │ │ │ │ └── RCTImageComponentView.mm │ │ │ │ │ ├── InputAccessory │ │ │ │ │ │ ├── RCTInputAccessoryComponentView.h │ │ │ │ │ │ ├── RCTInputAccessoryComponentView.mm │ │ │ │ │ │ ├── RCTInputAccessoryContentView.h │ │ │ │ │ │ └── RCTInputAccessoryContentView.mm │ │ │ │ │ ├── LegacyViewManagerInterop │ │ │ │ │ │ ├── RCTLegacyViewManagerInteropComponentView.h │ │ │ │ │ │ ├── RCTLegacyViewManagerInteropComponentView.mm │ │ │ │ │ │ ├── RCTLegacyViewManagerInteropCoordinatorAdapter.h │ │ │ │ │ │ └── RCTLegacyViewManagerInteropCoordinatorAdapter.mm │ │ │ │ │ ├── Modal │ │ │ │ │ │ ├── RCTFabricModalHostViewController.h │ │ │ │ │ │ ├── RCTFabricModalHostViewController.mm │ │ │ │ │ │ ├── RCTModalHostViewComponentView.h │ │ │ │ │ │ └── RCTModalHostViewComponentView.mm │ │ │ │ │ ├── RCTFabricComponentsPlugins.h │ │ │ │ │ ├── RCTFabricComponentsPlugins.mm │ │ │ │ │ ├── Root │ │ │ │ │ │ ├── RCTRootComponentView.h │ │ │ │ │ │ └── RCTRootComponentView.mm │ │ │ │ │ ├── SafeAreaView │ │ │ │ │ │ ├── RCTSafeAreaViewComponentView.h │ │ │ │ │ │ └── RCTSafeAreaViewComponentView.mm │ │ │ │ │ ├── ScrollView │ │ │ │ │ │ ├── RCTCustomPullToRefreshViewProtocol.h │ │ │ │ │ │ ├── RCTEnhancedScrollView.h │ │ │ │ │ │ ├── RCTEnhancedScrollView.mm │ │ │ │ │ │ ├── RCTPullToRefreshViewComponentView.h │ │ │ │ │ │ ├── RCTPullToRefreshViewComponentView.mm │ │ │ │ │ │ ├── RCTScrollViewComponentView.h │ │ │ │ │ │ └── RCTScrollViewComponentView.mm │ │ │ │ │ ├── Switch │ │ │ │ │ │ ├── RCTSwitchComponentView.h │ │ │ │ │ │ └── RCTSwitchComponentView.mm │ │ │ │ │ ├── Text │ │ │ │ │ │ ├── RCTAccessibilityElement.h │ │ │ │ │ │ ├── RCTAccessibilityElement.mm │ │ │ │ │ │ ├── RCTParagraphComponentAccessibilityProvider.h │ │ │ │ │ │ ├── RCTParagraphComponentAccessibilityProvider.mm │ │ │ │ │ │ ├── RCTParagraphComponentView.h │ │ │ │ │ │ └── RCTParagraphComponentView.mm │ │ │ │ │ ├── TextInput │ │ │ │ │ │ ├── RCTTextInputComponentView.h │ │ │ │ │ │ ├── RCTTextInputComponentView.mm │ │ │ │ │ │ ├── RCTTextInputNativeCommands.h │ │ │ │ │ │ ├── RCTTextInputUtils.h │ │ │ │ │ │ └── RCTTextInputUtils.mm │ │ │ │ │ ├── UnimplementedComponent │ │ │ │ │ │ ├── RCTUnimplementedNativeComponentView.h │ │ │ │ │ │ └── RCTUnimplementedNativeComponentView.mm │ │ │ │ │ ├── UnimplementedView │ │ │ │ │ │ ├── RCTUnimplementedViewComponentView.h │ │ │ │ │ │ └── RCTUnimplementedViewComponentView.mm │ │ │ │ │ └── View │ │ │ │ │ │ ├── RCTViewComponentView.h │ │ │ │ │ │ └── RCTViewComponentView.mm │ │ │ │ ├── RCTComponentViewClassDescriptor.h │ │ │ │ ├── RCTComponentViewDescriptor.h │ │ │ │ ├── RCTComponentViewFactory.h │ │ │ │ ├── RCTComponentViewFactory.mm │ │ │ │ ├── RCTComponentViewProtocol.h │ │ │ │ ├── RCTComponentViewRegistry.h │ │ │ │ ├── RCTComponentViewRegistry.mm │ │ │ │ ├── RCTMountingManager.h │ │ │ │ ├── RCTMountingManager.mm │ │ │ │ ├── RCTMountingManagerDelegate.h │ │ │ │ ├── RCTMountingTransactionObserverCoordinator.h │ │ │ │ ├── RCTMountingTransactionObserverCoordinator.mm │ │ │ │ ├── RCTMountingTransactionObserving.h │ │ │ │ ├── UIView+ComponentViewProtocol.h │ │ │ │ └── UIView+ComponentViewProtocol.mm │ │ │ ├── RCTConversions.h │ │ │ ├── RCTImageResponseDelegate.h │ │ │ ├── RCTImageResponseObserverProxy.h │ │ │ ├── RCTImageResponseObserverProxy.mm │ │ │ ├── RCTLocalizationProvider.h │ │ │ ├── RCTLocalizationProvider.mm │ │ │ ├── RCTPrimitives.h │ │ │ ├── RCTScheduler.h │ │ │ ├── RCTScheduler.mm │ │ │ ├── RCTSurfacePointerHandler.h │ │ │ ├── RCTSurfacePointerHandler.mm │ │ │ ├── RCTSurfacePresenter.h │ │ │ ├── RCTSurfacePresenter.mm │ │ │ ├── RCTSurfacePresenterBridgeAdapter.h │ │ │ ├── RCTSurfacePresenterBridgeAdapter.mm │ │ │ ├── RCTSurfaceRegistry.h │ │ │ ├── RCTSurfaceRegistry.mm │ │ │ ├── RCTSurfaceTouchHandler.h │ │ │ ├── RCTSurfaceTouchHandler.mm │ │ │ ├── RCTTouchableComponentViewProtocol.h │ │ │ ├── Surface │ │ │ │ ├── RCTFabricSurface.h │ │ │ │ └── RCTFabricSurface.mm │ │ │ └── Utils │ │ │ │ ├── PlatformRunLoopObserver.h │ │ │ │ ├── PlatformRunLoopObserver.mm │ │ │ │ ├── RCTGenericDelegateSplitter.h │ │ │ │ ├── RCTGenericDelegateSplitter.mm │ │ │ │ ├── RCTIdentifierPool.h │ │ │ │ ├── RCTReactTaggedView.h │ │ │ │ └── RCTReactTaggedView.mm │ │ ├── I18n │ │ │ ├── .clang-format-ignore │ │ │ ├── FBXXHashUtils.h │ │ │ ├── RCTLocalizedString.h │ │ │ ├── RCTLocalizedString.mm │ │ │ └── strings │ │ │ │ ├── ar.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── cs.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── da.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── de.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── el.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── en-GB.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ │ ├── es-ES.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── es.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── fi.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── fr.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── he.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── hi.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── hr.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── hu.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── id.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── it.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── ja.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── ko.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── ms.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── nb.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── nl.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── pl.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── pt-PT.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── pt.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── ro.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── ru.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── sk.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── sv.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── th.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── tr.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── uk.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── vi.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── zh-Hans.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── zh-Hant-HK.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── zh-Hant.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ └── zu.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ ├── Inspector │ │ │ ├── RCTCxxInspectorPackagerConnection.h │ │ │ ├── RCTCxxInspectorPackagerConnection.mm │ │ │ ├── RCTCxxInspectorPackagerConnectionDelegate.h │ │ │ ├── RCTCxxInspectorPackagerConnectionDelegate.mm │ │ │ ├── RCTCxxInspectorWebSocketAdapter.h │ │ │ ├── RCTCxxInspectorWebSocketAdapter.mm │ │ │ ├── RCTInspector.h │ │ │ ├── RCTInspector.mm │ │ │ ├── RCTInspectorPackagerConnection.h │ │ │ └── RCTInspectorPackagerConnection.m │ │ ├── Modules │ │ │ ├── RCTEventEmitter.h │ │ │ ├── RCTEventEmitter.m │ │ │ ├── RCTI18nUtil.h │ │ │ ├── RCTI18nUtil.m │ │ │ ├── RCTLayoutAnimation.h │ │ │ ├── RCTLayoutAnimation.m │ │ │ ├── RCTLayoutAnimationGroup.h │ │ │ ├── RCTLayoutAnimationGroup.m │ │ │ ├── RCTRedBoxExtraDataViewController.h │ │ │ ├── RCTRedBoxExtraDataViewController.m │ │ │ ├── RCTSurfacePresenterStub.h │ │ │ ├── RCTSurfacePresenterStub.m │ │ │ ├── RCTUIManager.h │ │ │ ├── RCTUIManager.m │ │ │ ├── RCTUIManagerObserverCoordinator.h │ │ │ ├── RCTUIManagerObserverCoordinator.mm │ │ │ ├── RCTUIManagerUtils.h │ │ │ └── RCTUIManagerUtils.m │ │ ├── Profiler │ │ │ ├── RCTMacros.h │ │ │ ├── RCTProfile.h │ │ │ ├── RCTProfile.m │ │ │ ├── RCTProfileTrampoline-arm.S │ │ │ ├── RCTProfileTrampoline-arm64.S │ │ │ ├── RCTProfileTrampoline-i386.S │ │ │ └── RCTProfileTrampoline-x86_64.S │ │ ├── React-RCTFabric.podspec │ │ ├── Tests │ │ │ ├── Mounting │ │ │ │ └── RCTComponentViewRegistryTests.mm │ │ │ └── Text │ │ │ │ └── RCTParagraphComponentViewTests.mm │ │ ├── UIUtils │ │ │ ├── RCTUIUtils.h │ │ │ └── RCTUIUtils.m │ │ ├── Views │ │ │ ├── RCTActivityIndicatorView.h │ │ │ ├── RCTActivityIndicatorView.m │ │ │ ├── RCTActivityIndicatorViewManager.h │ │ │ ├── RCTActivityIndicatorViewManager.m │ │ │ ├── RCTAnimationType.h │ │ │ ├── RCTAutoInsetsProtocol.h │ │ │ ├── RCTBorderCurve.h │ │ │ ├── RCTBorderDrawing.h │ │ │ ├── RCTBorderDrawing.m │ │ │ ├── RCTBorderStyle.h │ │ │ ├── RCTComponent.h │ │ │ ├── RCTComponentData.h │ │ │ ├── RCTComponentData.m │ │ │ ├── RCTConvert+CoreLocation.h │ │ │ ├── RCTConvert+CoreLocation.m │ │ │ ├── RCTConvert+Transform.h │ │ │ ├── RCTConvert+Transform.m │ │ │ ├── RCTDebuggingOverlay.h │ │ │ ├── RCTDebuggingOverlay.m │ │ │ ├── RCTDebuggingOverlayManager.h │ │ │ ├── RCTDebuggingOverlayManager.m │ │ │ ├── RCTFont.h │ │ │ ├── RCTFont.mm │ │ │ ├── RCTLayout.h │ │ │ ├── RCTLayout.m │ │ │ ├── RCTModalHostView.h │ │ │ ├── RCTModalHostView.m │ │ │ ├── RCTModalHostViewController.h │ │ │ ├── RCTModalHostViewController.m │ │ │ ├── RCTModalHostViewManager.h │ │ │ ├── RCTModalHostViewManager.m │ │ │ ├── RCTModalManager.h │ │ │ ├── RCTModalManager.m │ │ │ ├── RCTPointerEvents.h │ │ │ ├── RCTRootShadowView.h │ │ │ ├── RCTRootShadowView.m │ │ │ ├── RCTSegmentedControl.h │ │ │ ├── RCTSegmentedControl.m │ │ │ ├── RCTSegmentedControlManager.h │ │ │ ├── RCTSegmentedControlManager.m │ │ │ ├── RCTShadowView+Internal.h │ │ │ ├── RCTShadowView+Internal.m │ │ │ ├── RCTShadowView+Layout.h │ │ │ ├── RCTShadowView+Layout.m │ │ │ ├── RCTShadowView.h │ │ │ ├── RCTShadowView.m │ │ │ ├── RCTSwitch.h │ │ │ ├── RCTSwitch.m │ │ │ ├── RCTSwitchManager.h │ │ │ ├── RCTSwitchManager.m │ │ │ ├── RCTTextDecorationLineType.h │ │ │ ├── RCTView.h │ │ │ ├── RCTView.m │ │ │ ├── RCTViewManager.h │ │ │ ├── RCTViewManager.m │ │ │ ├── RCTViewUtils.h │ │ │ ├── RCTViewUtils.m │ │ │ ├── RCTWrapperViewController.h │ │ │ ├── RCTWrapperViewController.m │ │ │ ├── RefreshControl │ │ │ │ ├── RCTRefreshControl.h │ │ │ │ ├── RCTRefreshControl.m │ │ │ │ ├── RCTRefreshControlManager.h │ │ │ │ ├── RCTRefreshControlManager.m │ │ │ │ └── RCTRefreshableProtocol.h │ │ │ ├── SafeAreaView │ │ │ │ ├── RCTSafeAreaShadowView.h │ │ │ │ ├── RCTSafeAreaShadowView.m │ │ │ │ ├── RCTSafeAreaView.h │ │ │ │ ├── RCTSafeAreaView.m │ │ │ │ ├── RCTSafeAreaViewLocalData.h │ │ │ │ ├── RCTSafeAreaViewLocalData.m │ │ │ │ ├── RCTSafeAreaViewManager.h │ │ │ │ └── RCTSafeAreaViewManager.m │ │ │ ├── ScrollView │ │ │ │ ├── RCTScrollContentShadowView.h │ │ │ │ ├── RCTScrollContentShadowView.m │ │ │ │ ├── RCTScrollContentView.h │ │ │ │ ├── RCTScrollContentView.m │ │ │ │ ├── RCTScrollContentViewManager.h │ │ │ │ ├── RCTScrollContentViewManager.m │ │ │ │ ├── RCTScrollEvent.h │ │ │ │ ├── RCTScrollEvent.m │ │ │ │ ├── RCTScrollView.h │ │ │ │ ├── RCTScrollView.m │ │ │ │ ├── RCTScrollViewManager.h │ │ │ │ ├── RCTScrollViewManager.m │ │ │ │ └── RCTScrollableProtocol.h │ │ │ ├── UIView+Private.h │ │ │ ├── UIView+React.h │ │ │ └── UIView+React.m │ │ └── third-party.xcconfig │ ├── ReactAndroid │ │ ├── .npmignore │ │ ├── README.md │ │ ├── api │ │ │ └── ReactAndroid.api │ │ ├── build.gradle.kts │ │ ├── cmake-utils │ │ │ ├── ReactNative-application.cmake │ │ │ ├── default-app-setup │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── OnLoad.cpp │ │ │ └── folly-flags.cmake │ │ ├── external-artifacts │ │ │ ├── .npmignore │ │ │ └── build.gradle.kts │ │ ├── gradle.properties │ │ ├── hermes-engine │ │ │ ├── .npmignore │ │ │ ├── build.gradle.kts │ │ │ └── gradle.properties │ │ ├── proguard-rules.pro │ │ ├── publish.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── facebook │ │ │ │ │ ├── annotationprocessors │ │ │ │ │ └── common │ │ │ │ │ │ └── ProcessorBase.java │ │ │ │ │ ├── debug │ │ │ │ │ ├── debugoverlay │ │ │ │ │ │ └── model │ │ │ │ │ │ │ └── DebugOverlayTag.java │ │ │ │ │ ├── holder │ │ │ │ │ │ ├── NoopPrinter.java │ │ │ │ │ │ ├── Printer.java │ │ │ │ │ │ └── PrinterHolder.java │ │ │ │ │ └── tags │ │ │ │ │ │ └── ReactDebugOverlayTags.java │ │ │ │ │ ├── hermes │ │ │ │ │ ├── instrumentation │ │ │ │ │ │ ├── HermesMemoryDumper.java │ │ │ │ │ │ └── HermesSamplingProfiler.java │ │ │ │ │ ├── reactexecutor │ │ │ │ │ │ ├── HermesExecutor.java │ │ │ │ │ │ ├── HermesExecutorFactory.java │ │ │ │ │ │ ├── RuntimeConfig.java │ │ │ │ │ │ └── fbjni.pro │ │ │ │ │ └── unicode │ │ │ │ │ │ └── AndroidUnicodeUtils.java │ │ │ │ │ ├── perftest │ │ │ │ │ └── PerfTestConfig.java │ │ │ │ │ ├── proguard │ │ │ │ │ └── annotations │ │ │ │ │ │ ├── KeepGettersAndSetters.java │ │ │ │ │ │ └── proguard_annotations.pro │ │ │ │ │ ├── react │ │ │ │ │ ├── BaseReactPackage.java │ │ │ │ │ ├── CompositeReactPackage.java │ │ │ │ │ ├── CompositeReactPackageTurboModuleManagerDelegate.java │ │ │ │ │ ├── CoreModulesPackage.java │ │ │ │ │ ├── DebugCorePackage.java │ │ │ │ │ ├── EagerModuleProvider.java │ │ │ │ │ ├── HeadlessJsTaskService.java │ │ │ │ │ ├── JSEngineResolutionAlgorithm.kt │ │ │ │ │ ├── LazyReactPackage.java │ │ │ │ │ ├── MemoryPressureRouter.java │ │ │ │ │ ├── NativeModuleRegistryBuilder.java │ │ │ │ │ ├── ReactActivity.java │ │ │ │ │ ├── ReactActivityDelegate.java │ │ │ │ │ ├── ReactAndroidHWInputDeviceHelper.java │ │ │ │ │ ├── ReactApplication.kt │ │ │ │ │ ├── ReactDelegate.java │ │ │ │ │ ├── ReactFragment.java │ │ │ │ │ ├── ReactHost.kt │ │ │ │ │ ├── ReactInstanceEventListener.kt │ │ │ │ │ ├── ReactInstanceManager.java │ │ │ │ │ ├── ReactInstanceManagerBuilder.java │ │ │ │ │ ├── ReactNativeHost.java │ │ │ │ │ ├── ReactPackage.java │ │ │ │ │ ├── ReactPackageHelper.java │ │ │ │ │ ├── ReactPackageLogger.java │ │ │ │ │ ├── ReactPackageTurboModuleManagerDelegate.java │ │ │ │ │ ├── ReactRootView.java │ │ │ │ │ ├── TurboReactPackage.java │ │ │ │ │ ├── ViewManagerOnDemandReactPackage.java │ │ │ │ │ ├── animated │ │ │ │ │ │ ├── AdditionAnimatedNode.java │ │ │ │ │ │ ├── AnimatedNode.java │ │ │ │ │ │ ├── AnimatedNodeValueListener.java │ │ │ │ │ │ ├── AnimatedNodeWithUpdateableConfig.java │ │ │ │ │ │ ├── AnimationDriver.java │ │ │ │ │ │ ├── ColorAnimatedNode.java │ │ │ │ │ │ ├── DecayAnimation.java │ │ │ │ │ │ ├── DiffClampAnimatedNode.java │ │ │ │ │ │ ├── DivisionAnimatedNode.java │ │ │ │ │ │ ├── EventAnimationDriver.java │ │ │ │ │ │ ├── FrameBasedAnimationDriver.java │ │ │ │ │ │ ├── InterpolationAnimatedNode.java │ │ │ │ │ │ ├── ModulusAnimatedNode.java │ │ │ │ │ │ ├── MultiplicationAnimatedNode.java │ │ │ │ │ │ ├── NativeAnimatedModule.java │ │ │ │ │ │ ├── NativeAnimatedNodesManager.java │ │ │ │ │ │ ├── ObjectAnimatedNode.java │ │ │ │ │ │ ├── PropsAnimatedNode.java │ │ │ │ │ │ ├── SpringAnimation.java │ │ │ │ │ │ ├── StyleAnimatedNode.java │ │ │ │ │ │ ├── SubtractionAnimatedNode.java │ │ │ │ │ │ ├── TrackingAnimatedNode.java │ │ │ │ │ │ ├── TransformAnimatedNode.java │ │ │ │ │ │ └── ValueAnimatedNode.java │ │ │ │ │ ├── bridge │ │ │ │ │ │ ├── ActivityEventListener.java │ │ │ │ │ │ ├── Arguments.java │ │ │ │ │ │ ├── AssertionException.java │ │ │ │ │ │ ├── BackgroundExecutor.java │ │ │ │ │ │ ├── BaseActivityEventListener.java │ │ │ │ │ │ ├── BaseJavaModule.java │ │ │ │ │ │ ├── Callback.java │ │ │ │ │ │ ├── CallbackImpl.java │ │ │ │ │ │ ├── CatalystInstance.java │ │ │ │ │ │ ├── CatalystInstanceImpl.java │ │ │ │ │ │ ├── ColorPropConverter.java │ │ │ │ │ │ ├── CxxCallbackImpl.java │ │ │ │ │ │ ├── CxxModuleWrapper.java │ │ │ │ │ │ ├── CxxModuleWrapperBase.java │ │ │ │ │ │ ├── DefaultJSExceptionHandler.java │ │ │ │ │ │ ├── DimensionPropConverter.java │ │ │ │ │ │ ├── Dynamic.java │ │ │ │ │ │ ├── DynamicFromArray.java │ │ │ │ │ │ ├── DynamicFromMap.java │ │ │ │ │ │ ├── DynamicFromObject.java │ │ │ │ │ │ ├── FallbackJSBundleLoader.java │ │ │ │ │ │ ├── GuardedAsyncTask.java │ │ │ │ │ │ ├── GuardedResultAsyncTask.java │ │ │ │ │ │ ├── GuardedRunnable.java │ │ │ │ │ │ ├── Inspector.java │ │ │ │ │ │ ├── InvalidIteratorException.java │ │ │ │ │ │ ├── JSApplicationCausedNativeException.java │ │ │ │ │ │ ├── JSApplicationIllegalArgumentException.java │ │ │ │ │ │ ├── JSBundleLoader.java │ │ │ │ │ │ ├── JSBundleLoaderDelegate.java │ │ │ │ │ │ ├── JSExceptionHandler.java │ │ │ │ │ │ ├── JSIModule.java │ │ │ │ │ │ ├── JSIModuleHolder.java │ │ │ │ │ │ ├── JSIModulePackage.java │ │ │ │ │ │ ├── JSIModuleProvider.java │ │ │ │ │ │ ├── JSIModuleRegistry.java │ │ │ │ │ │ ├── JSIModuleSpec.java │ │ │ │ │ │ ├── JSIModuleType.java │ │ │ │ │ │ ├── JSInstance.java │ │ │ │ │ │ ├── JSONArguments.java │ │ │ │ │ │ ├── JavaJSExecutor.java │ │ │ │ │ │ ├── JavaMethodWrapper.java │ │ │ │ │ │ ├── JavaModuleWrapper.java │ │ │ │ │ │ ├── JavaOnlyArray.java │ │ │ │ │ │ ├── JavaOnlyMap.java │ │ │ │ │ │ ├── JavaScriptContextHolder.java │ │ │ │ │ │ ├── JavaScriptExecutor.java │ │ │ │ │ │ ├── JavaScriptExecutorFactory.java │ │ │ │ │ │ ├── JavaScriptModule.java │ │ │ │ │ │ ├── JavaScriptModuleRegistry.java │ │ │ │ │ │ ├── JsonWriterHelper.java │ │ │ │ │ │ ├── LifecycleEventListener.java │ │ │ │ │ │ ├── MemoryPressure.java │ │ │ │ │ │ ├── MemoryPressureListener.java │ │ │ │ │ │ ├── ModuleHolder.java │ │ │ │ │ │ ├── ModuleSpec.java │ │ │ │ │ │ ├── NativeArgumentsParseException.java │ │ │ │ │ │ ├── NativeArray.java │ │ │ │ │ │ ├── NativeArrayInterface.java │ │ │ │ │ │ ├── NativeMap.java │ │ │ │ │ │ ├── NativeModule.java │ │ │ │ │ │ ├── NativeModuleRegistry.java │ │ │ │ │ │ ├── NoSuchKeyException.java │ │ │ │ │ │ ├── NotThreadSafeBridgeIdleDebugListener.java │ │ │ │ │ │ ├── ObjectAlreadyConsumedException.java │ │ │ │ │ │ ├── OnBatchCompleteListener.java │ │ │ │ │ │ ├── PerformanceCounter.java │ │ │ │ │ │ ├── Promise.java │ │ │ │ │ │ ├── PromiseImpl.java │ │ │ │ │ │ ├── ProxyJavaScriptExecutor.java │ │ │ │ │ │ ├── ReactApplicationContext.java │ │ │ │ │ │ ├── ReactBridge.java │ │ │ │ │ │ ├── ReactContext.java │ │ │ │ │ │ ├── ReactContextBaseJavaModule.java │ │ │ │ │ │ ├── ReactCxxErrorHandler.java │ │ │ │ │ │ ├── ReactIgnorableMountingException.java │ │ │ │ │ │ ├── ReactMarker.java │ │ │ │ │ │ ├── ReactMarkerConstants.java │ │ │ │ │ │ ├── ReactMethod.java │ │ │ │ │ │ ├── ReactModuleWithSpec.java │ │ │ │ │ │ ├── ReactNoCrashBridgeNotAllowedSoftException.java │ │ │ │ │ │ ├── ReactNoCrashSoftException.java │ │ │ │ │ │ ├── ReactSoftExceptionLogger.java │ │ │ │ │ │ ├── ReadableArray.java │ │ │ │ │ │ ├── ReadableMap.java │ │ │ │ │ │ ├── ReadableMapKeySetIterator.java │ │ │ │ │ │ ├── ReadableNativeArray.java │ │ │ │ │ │ ├── ReadableNativeMap.java │ │ │ │ │ │ ├── ReadableType.java │ │ │ │ │ │ ├── RetryableMountingLayerException.java │ │ │ │ │ │ ├── RuntimeExecutor.java │ │ │ │ │ │ ├── RuntimeScheduler.java │ │ │ │ │ │ ├── SoftAssertions.java │ │ │ │ │ │ ├── Systrace.java │ │ │ │ │ │ ├── UIManager.java │ │ │ │ │ │ ├── UIManagerListener.java │ │ │ │ │ │ ├── UIManagerProvider.kt │ │ │ │ │ │ ├── UiThreadUtil.java │ │ │ │ │ │ ├── UnexpectedNativeTypeException.java │ │ │ │ │ │ ├── WindowFocusChangeListener.java │ │ │ │ │ │ ├── WritableArray.java │ │ │ │ │ │ ├── WritableMap.java │ │ │ │ │ │ ├── WritableNativeArray.java │ │ │ │ │ │ ├── WritableNativeMap.java │ │ │ │ │ │ ├── bridge.pro │ │ │ │ │ │ ├── interop │ │ │ │ │ │ │ └── InteropModuleRegistry.java │ │ │ │ │ │ ├── queue │ │ │ │ │ │ │ ├── MessageQueueThread.java │ │ │ │ │ │ │ ├── MessageQueueThreadHandler.java │ │ │ │ │ │ │ ├── MessageQueueThreadImpl.java │ │ │ │ │ │ │ ├── MessageQueueThreadPerfStats.java │ │ │ │ │ │ │ ├── MessageQueueThreadSpec.java │ │ │ │ │ │ │ ├── QueueThreadExceptionHandler.java │ │ │ │ │ │ │ ├── ReactQueueConfiguration.java │ │ │ │ │ │ │ ├── ReactQueueConfigurationImpl.java │ │ │ │ │ │ │ └── ReactQueueConfigurationSpec.java │ │ │ │ │ │ └── reactnative.pro │ │ │ │ │ ├── common │ │ │ │ │ │ ├── ClearableSynchronizedPool.java │ │ │ │ │ │ ├── DebugServerException.java │ │ │ │ │ │ ├── HasJavascriptExceptionMetadata.java │ │ │ │ │ │ ├── JavascriptException.java │ │ │ │ │ │ ├── LifecycleState.java │ │ │ │ │ │ ├── LongArray.java │ │ │ │ │ │ ├── MapBuilder.java │ │ │ │ │ │ ├── ReactConstants.java │ │ │ │ │ │ ├── ShakeDetector.java │ │ │ │ │ │ ├── SingleThreadAsserter.java │ │ │ │ │ │ ├── StandardCharsets.java │ │ │ │ │ │ ├── SurfaceDelegate.java │ │ │ │ │ │ ├── SurfaceDelegateFactory.java │ │ │ │ │ │ ├── SystemClock.java │ │ │ │ │ │ ├── annotations │ │ │ │ │ │ │ ├── DeprecatedInNewArchitecture.kt │ │ │ │ │ │ │ ├── FrameworkAPI.kt │ │ │ │ │ │ │ ├── StableReactNativeAPI.kt │ │ │ │ │ │ │ ├── UnstableReactNativeAPI.kt │ │ │ │ │ │ │ └── VisibleForTesting.kt │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ └── ReactFontManager.java │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ └── ReactBuildConfig.java │ │ │ │ │ │ ├── futures │ │ │ │ │ │ │ └── SimpleSettableFuture.java │ │ │ │ │ │ ├── mapbuffer │ │ │ │ │ │ │ ├── MapBuffer.kt │ │ │ │ │ │ │ ├── MapBufferSoLoader.kt │ │ │ │ │ │ │ ├── ReadableMapBuffer.kt │ │ │ │ │ │ │ └── WritableMapBuffer.kt │ │ │ │ │ │ └── network │ │ │ │ │ │ │ └── OkHttpCallUtil.java │ │ │ │ │ ├── config │ │ │ │ │ │ └── ReactFeatureFlags.java │ │ │ │ │ ├── defaults │ │ │ │ │ │ ├── DefaultBindingsInstaller.kt │ │ │ │ │ │ ├── DefaultComponentsRegistry.kt │ │ │ │ │ │ ├── DefaultNewArchitectureEntryPoint.kt │ │ │ │ │ │ ├── DefaultReactActivityDelegate.kt │ │ │ │ │ │ ├── DefaultReactHost.kt │ │ │ │ │ │ ├── DefaultReactHostDelegate.kt │ │ │ │ │ │ ├── DefaultReactNativeHost.kt │ │ │ │ │ │ ├── DefaultSoLoader.kt │ │ │ │ │ │ └── DefaultTurboModuleManagerDelegate.kt │ │ │ │ │ ├── devsupport │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── BridgeDevSupportManager.java │ │ │ │ │ │ ├── BundleDownloader.java │ │ │ │ │ │ ├── CxxInspectorPackagerConnection.java │ │ │ │ │ │ ├── DebugOverlayController.java │ │ │ │ │ │ ├── DefaultDevLoadingViewImplementation.java │ │ │ │ │ │ ├── DefaultDevSupportManagerFactory.java │ │ │ │ │ │ ├── DevInternalSettings.java │ │ │ │ │ │ ├── DevServerHelper.java │ │ │ │ │ │ ├── DevSettingsActivity.java │ │ │ │ │ │ ├── DevSupportManagerBase.java │ │ │ │ │ │ ├── DevSupportManagerFactory.java │ │ │ │ │ │ ├── DevSupportSoLoader.java │ │ │ │ │ │ ├── DisabledDevSupportManager.java │ │ │ │ │ │ ├── DoubleTapReloadRecognizer.java │ │ │ │ │ │ ├── FpsView.java │ │ │ │ │ │ ├── HMRClient.java │ │ │ │ │ │ ├── IInspectorPackagerConnection.java │ │ │ │ │ │ ├── InspectorFlags.java │ │ │ │ │ │ ├── InspectorPackagerConnection.java │ │ │ │ │ │ ├── JSCHeapCapture.java │ │ │ │ │ │ ├── JSDebuggerWebSocketClient.java │ │ │ │ │ │ ├── LogBoxDialog.java │ │ │ │ │ │ ├── LogBoxDialogSurfaceDelegate.java │ │ │ │ │ │ ├── LogBoxModule.java │ │ │ │ │ │ ├── MultipartStreamReader.java │ │ │ │ │ │ ├── PackagerStatusCheck.java │ │ │ │ │ │ ├── PerftestDevSupportManager.java │ │ │ │ │ │ ├── ReactInstanceDevHelper.java │ │ │ │ │ │ ├── RedBoxContentView.java │ │ │ │ │ │ ├── RedBoxDialogSurfaceDelegate.java │ │ │ │ │ │ ├── StackTraceHelper.java │ │ │ │ │ │ ├── ViewHierarchyUtil.java │ │ │ │ │ │ ├── WebsocketJavaScriptExecutor.java │ │ │ │ │ │ ├── WindowOverlayCompat.java │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ │ ├── BundleLoadCallback.java │ │ │ │ │ │ │ ├── DevBundleDownloadListener.java │ │ │ │ │ │ │ ├── DevLoadingViewManager.java │ │ │ │ │ │ │ ├── DevOptionHandler.java │ │ │ │ │ │ │ ├── DevSplitBundleCallback.java │ │ │ │ │ │ │ ├── DevSupportManager.java │ │ │ │ │ │ │ ├── ErrorCustomizer.java │ │ │ │ │ │ │ ├── ErrorType.java │ │ │ │ │ │ │ ├── PackagerStatusCallback.java │ │ │ │ │ │ │ ├── RedBoxHandler.java │ │ │ │ │ │ │ └── StackFrame.java │ │ │ │ │ ├── fabric │ │ │ │ │ │ ├── .clang-tidy │ │ │ │ │ │ ├── Binding.java │ │ │ │ │ │ ├── BindingImpl.java │ │ │ │ │ │ ├── ComponentFactory.java │ │ │ │ │ │ ├── CoreComponentsRegistry.java │ │ │ │ │ │ ├── DevToolsReactPerfLogger.java │ │ │ │ │ │ ├── EmptyReactNativeConfig.java │ │ │ │ │ │ ├── FabricComponents.java │ │ │ │ │ │ ├── FabricSoLoader.java │ │ │ │ │ │ ├── FabricUIManager.java │ │ │ │ │ │ ├── FabricUIManagerProviderImpl.java │ │ │ │ │ │ ├── GuardedFrameCallback.java │ │ │ │ │ │ ├── LongStreamingStats.java │ │ │ │ │ │ ├── ReactNativeConfig.kt │ │ │ │ │ │ ├── StateWrapperImpl.java │ │ │ │ │ │ ├── SurfaceHandlerBinding.java │ │ │ │ │ │ ├── events │ │ │ │ │ │ │ ├── EventBeatManager.java │ │ │ │ │ │ │ ├── EventEmitterWrapper.java │ │ │ │ │ │ │ └── FabricEventEmitter.java │ │ │ │ │ │ └── mounting │ │ │ │ │ │ │ ├── LayoutMetricsConversions.java │ │ │ │ │ │ │ ├── MountItemDispatcher.java │ │ │ │ │ │ │ ├── MountingManager.java │ │ │ │ │ │ │ ├── SurfaceMountingManager.java │ │ │ │ │ │ │ └── mountitems │ │ │ │ │ │ │ ├── BatchMountItem.java │ │ │ │ │ │ │ ├── DispatchCommandMountItem.java │ │ │ │ │ │ │ ├── DispatchIntCommandMountItem.java │ │ │ │ │ │ │ ├── DispatchStringCommandMountItem.java │ │ │ │ │ │ │ ├── FabricNameComponentMapping.java │ │ │ │ │ │ │ ├── IntBufferBatchMountItem.java │ │ │ │ │ │ │ ├── MountItem.java │ │ │ │ │ │ │ ├── MountItemFactory.java │ │ │ │ │ │ │ ├── PreAllocateViewMountItem.java │ │ │ │ │ │ │ ├── SendAccessibilityEvent.java │ │ │ │ │ │ │ └── SendAccessibilityEventMountItem.java │ │ │ │ │ ├── flipper │ │ │ │ │ │ └── ReactNativeFlipper.kt │ │ │ │ │ ├── interfaces │ │ │ │ │ │ ├── TaskInterface.kt │ │ │ │ │ │ ├── exceptionmanager │ │ │ │ │ │ │ └── ReactJsExceptionHandler.kt │ │ │ │ │ │ └── fabric │ │ │ │ │ │ │ ├── ReactSurface.kt │ │ │ │ │ │ │ └── SurfaceHandler.kt │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── AndroidChoreographerProvider.java │ │ │ │ │ │ ├── ChoreographerProvider.java │ │ │ │ │ │ ├── interop │ │ │ │ │ │ │ ├── InteropEvent.java │ │ │ │ │ │ │ └── InteropEventEmitter.java │ │ │ │ │ │ └── turbomodule │ │ │ │ │ │ │ ├── .clang-tidy │ │ │ │ │ │ │ └── core │ │ │ │ │ │ │ ├── CallInvokerHolderImpl.java │ │ │ │ │ │ │ ├── NativeMethodCallInvokerHolderImpl.java │ │ │ │ │ │ │ ├── NativeModuleSoLoader.kt │ │ │ │ │ │ │ ├── TurboModuleInteropUtils.java │ │ │ │ │ │ │ ├── TurboModuleManager.java │ │ │ │ │ │ │ ├── TurboModuleManagerDelegate.java │ │ │ │ │ │ │ ├── TurboModulePerfLogger.java │ │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ │ ├── CallInvokerHolder.kt │ │ │ │ │ │ │ ├── NativeMethodCallInvokerHolder.kt │ │ │ │ │ │ │ ├── TurboModule.kt │ │ │ │ │ │ │ └── TurboModuleRegistry.kt │ │ │ │ │ ├── jscexecutor │ │ │ │ │ │ ├── JSCExecutor.kt │ │ │ │ │ │ └── JSCExecutorFactory.kt │ │ │ │ │ ├── jstasks │ │ │ │ │ │ ├── HeadlessJsTaskConfig.java │ │ │ │ │ │ ├── HeadlessJsTaskContext.java │ │ │ │ │ │ ├── HeadlessJsTaskEventListener.java │ │ │ │ │ │ ├── HeadlessJsTaskRetryPolicy.java │ │ │ │ │ │ ├── LinearCountingRetryPolicy.java │ │ │ │ │ │ └── NoRetryPolicy.java │ │ │ │ │ ├── module │ │ │ │ │ │ ├── annotations │ │ │ │ │ │ │ ├── ReactModule.java │ │ │ │ │ │ │ └── ReactModuleList.java │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ ├── ReactModuleInfo.java │ │ │ │ │ │ │ └── ReactModuleInfoProvider.java │ │ │ │ │ │ └── processing │ │ │ │ │ │ │ └── ReactModuleSpecProcessor.java │ │ │ │ │ ├── modules │ │ │ │ │ │ ├── .clang-tidy │ │ │ │ │ │ ├── accessibilityinfo │ │ │ │ │ │ │ └── AccessibilityInfoModule.java │ │ │ │ │ │ ├── appearance │ │ │ │ │ │ │ └── AppearanceModule.java │ │ │ │ │ │ ├── appregistry │ │ │ │ │ │ │ └── AppRegistry.java │ │ │ │ │ │ ├── appstate │ │ │ │ │ │ │ └── AppStateModule.java │ │ │ │ │ │ ├── blob │ │ │ │ │ │ │ ├── BlobCollector.java │ │ │ │ │ │ │ ├── BlobModule.java │ │ │ │ │ │ │ ├── BlobProvider.java │ │ │ │ │ │ │ └── FileReaderModule.java │ │ │ │ │ │ ├── camera │ │ │ │ │ │ │ └── ImageStoreManager.java │ │ │ │ │ │ ├── clipboard │ │ │ │ │ │ │ └── ClipboardModule.java │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ └── ModuleDataCleaner.java │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ ├── ChoreographerCompat.java │ │ │ │ │ │ │ ├── DefaultHardwareBackBtnHandler.java │ │ │ │ │ │ │ ├── DeviceEventManagerModule.java │ │ │ │ │ │ │ ├── ExceptionsManagerModule.java │ │ │ │ │ │ │ ├── HeadlessJsTaskSupportModule.java │ │ │ │ │ │ │ ├── JSTimers.java │ │ │ │ │ │ │ ├── JavaScriptTimerExecutor.java │ │ │ │ │ │ │ ├── JavaTimerManager.java │ │ │ │ │ │ │ ├── PermissionAwareActivity.java │ │ │ │ │ │ │ ├── PermissionListener.java │ │ │ │ │ │ │ ├── RCTNativeAppEventEmitter.java │ │ │ │ │ │ │ ├── ReactChoreographer.java │ │ │ │ │ │ │ └── TimingModule.java │ │ │ │ │ │ ├── debug │ │ │ │ │ │ │ ├── AnimationsDebugModule.java │ │ │ │ │ │ │ ├── DevSettingsModule.java │ │ │ │ │ │ │ ├── DidJSUpdateUiDuringFrameDetector.java │ │ │ │ │ │ │ ├── FpsDebugFrameCallback.java │ │ │ │ │ │ │ ├── SourceCodeModule.java │ │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ │ │ └── DeveloperSettings.java │ │ │ │ │ │ ├── deviceinfo │ │ │ │ │ │ │ └── DeviceInfoModule.java │ │ │ │ │ │ ├── devloading │ │ │ │ │ │ │ └── DevLoadingModule.java │ │ │ │ │ │ ├── devtoolssettings │ │ │ │ │ │ │ └── DevToolsSettingsManagerModule.java │ │ │ │ │ │ ├── dialog │ │ │ │ │ │ │ ├── AlertFragment.java │ │ │ │ │ │ │ └── DialogModule.java │ │ │ │ │ │ ├── fresco │ │ │ │ │ │ │ ├── FrescoModule.java │ │ │ │ │ │ │ ├── ReactNetworkImageRequest.java │ │ │ │ │ │ │ ├── ReactOkHttpNetworkFetcher.java │ │ │ │ │ │ │ └── SystraceRequestListener.java │ │ │ │ │ │ ├── i18nmanager │ │ │ │ │ │ │ ├── I18nManagerModule.java │ │ │ │ │ │ │ └── I18nUtil.java │ │ │ │ │ │ ├── image │ │ │ │ │ │ │ └── ImageLoaderModule.java │ │ │ │ │ │ ├── intent │ │ │ │ │ │ │ └── IntentModule.java │ │ │ │ │ │ ├── network │ │ │ │ │ │ │ ├── CookieJarContainer.java │ │ │ │ │ │ │ ├── CountingOutputStream.java │ │ │ │ │ │ │ ├── CustomClientBuilder.java │ │ │ │ │ │ │ ├── ForwardingCookieHandler.java │ │ │ │ │ │ │ ├── HeaderUtil.java │ │ │ │ │ │ │ ├── NetworkInterceptorCreator.java │ │ │ │ │ │ │ ├── NetworkingModule.java │ │ │ │ │ │ │ ├── OkHttpClientFactory.java │ │ │ │ │ │ │ ├── OkHttpClientProvider.java │ │ │ │ │ │ │ ├── ProgressListener.java │ │ │ │ │ │ │ ├── ProgressRequestBody.java │ │ │ │ │ │ │ ├── ProgressResponseBody.java │ │ │ │ │ │ │ ├── ProgressiveStringDecoder.java │ │ │ │ │ │ │ ├── ReactCookieJarContainer.java │ │ │ │ │ │ │ ├── RequestBodyUtil.java │ │ │ │ │ │ │ ├── ResponseUtil.java │ │ │ │ │ │ │ └── TLSSocketFactory.java │ │ │ │ │ │ ├── permissions │ │ │ │ │ │ │ └── PermissionsModule.java │ │ │ │ │ │ ├── share │ │ │ │ │ │ │ └── ShareModule.java │ │ │ │ │ │ ├── sound │ │ │ │ │ │ │ └── SoundManagerModule.java │ │ │ │ │ │ ├── statusbar │ │ │ │ │ │ │ └── StatusBarModule.java │ │ │ │ │ │ ├── systeminfo │ │ │ │ │ │ │ ├── AndroidInfoHelpers.java │ │ │ │ │ │ │ ├── AndroidInfoModule.java │ │ │ │ │ │ │ └── ReactNativeVersion.java │ │ │ │ │ │ ├── toast │ │ │ │ │ │ │ └── ToastModule.java │ │ │ │ │ │ ├── vibration │ │ │ │ │ │ │ └── VibrationModule.java │ │ │ │ │ │ └── websocket │ │ │ │ │ │ │ └── WebSocketModule.java │ │ │ │ │ ├── packagerconnection │ │ │ │ │ │ ├── FileIoHandler.java │ │ │ │ │ │ ├── JSPackagerClient.java │ │ │ │ │ │ ├── NotificationOnlyHandler.java │ │ │ │ │ │ ├── PackagerConnectionSettings.java │ │ │ │ │ │ ├── ReconnectingWebSocket.java │ │ │ │ │ │ ├── RequestHandler.java │ │ │ │ │ │ ├── RequestOnlyHandler.java │ │ │ │ │ │ └── Responder.java │ │ │ │ │ ├── processing │ │ │ │ │ │ └── ReactPropertyProcessor.java │ │ │ │ │ ├── reactperflogger │ │ │ │ │ │ └── NativeModulePerfLogger.java │ │ │ │ │ ├── runtime │ │ │ │ │ │ ├── .clang-tidy │ │ │ │ │ │ ├── BindingsInstaller.kt │ │ │ │ │ │ ├── BoltsFutureTask.java │ │ │ │ │ │ ├── BridgelessAtomicRef.java │ │ │ │ │ │ ├── BridgelessDevSupportManager.java │ │ │ │ │ │ ├── BridgelessReactContext.java │ │ │ │ │ │ ├── BridgelessReactStateTracker.java │ │ │ │ │ │ ├── CoreReactPackage.java │ │ │ │ │ │ ├── JSCInstance.java │ │ │ │ │ │ ├── JSRuntimeFactory.java │ │ │ │ │ │ ├── JSTimerExecutor.java │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── ReactHostDelegate.kt │ │ │ │ │ │ ├── ReactHostImpl.java │ │ │ │ │ │ ├── ReactInstance.java │ │ │ │ │ │ ├── ReactLifecycleStateManager.java │ │ │ │ │ │ ├── ReactSurfaceImpl.java │ │ │ │ │ │ ├── ReactSurfaceView.java │ │ │ │ │ │ ├── cxxreactpackage │ │ │ │ │ │ │ └── CxxReactPackage.kt │ │ │ │ │ │ ├── hermes │ │ │ │ │ │ │ └── HermesInstance.kt │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ └── bolts │ │ │ │ │ │ │ ├── AggregateException.java │ │ │ │ │ │ │ ├── AndroidExecutors.java │ │ │ │ │ │ │ ├── BoltsExecutors.java │ │ │ │ │ │ │ ├── CancellationToken.java │ │ │ │ │ │ │ ├── CancellationTokenRegistration.java │ │ │ │ │ │ │ ├── CancellationTokenSource.java │ │ │ │ │ │ │ ├── Capture.java │ │ │ │ │ │ │ ├── Continuation.java │ │ │ │ │ │ │ ├── ExecutorException.java │ │ │ │ │ │ │ ├── Task.java │ │ │ │ │ │ │ ├── TaskCompletionSource.java │ │ │ │ │ │ │ ├── UnobservedErrorNotifier.java │ │ │ │ │ │ │ └── UnobservedTaskException.java │ │ │ │ │ ├── shell │ │ │ │ │ │ ├── MainPackageConfig.java │ │ │ │ │ │ └── MainReactPackage.java │ │ │ │ │ ├── touch │ │ │ │ │ │ ├── JSResponderHandler.kt │ │ │ │ │ │ ├── OnInterceptTouchEventListener.kt │ │ │ │ │ │ ├── ReactHitSlopView.kt │ │ │ │ │ │ └── ReactInterceptingViewGroup.kt │ │ │ │ │ ├── turbomodule │ │ │ │ │ │ └── core │ │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ │ └── TurboModule.kt │ │ │ │ │ ├── uimanager │ │ │ │ │ │ ├── BaseViewManager.java │ │ │ │ │ │ ├── BaseViewManagerDelegate.java │ │ │ │ │ │ ├── BaseViewManagerInterface.java │ │ │ │ │ │ ├── ComponentNameResolver.java │ │ │ │ │ │ ├── ComponentNameResolverManager.java │ │ │ │ │ │ ├── DisplayMetricsHolder.java │ │ │ │ │ │ ├── FabricViewStateManager.java │ │ │ │ │ │ ├── FloatUtil.java │ │ │ │ │ │ ├── GuardedFrameCallback.java │ │ │ │ │ │ ├── IViewGroupManager.java │ │ │ │ │ │ ├── IViewManagerWithChildren.java │ │ │ │ │ │ ├── IllegalViewOperationException.java │ │ │ │ │ │ ├── JSPointerDispatcher.java │ │ │ │ │ │ ├── JSTouchDispatcher.java │ │ │ │ │ │ ├── LayoutShadowNode.java │ │ │ │ │ │ ├── MatrixMathHelper.java │ │ │ │ │ │ ├── MeasureSpecAssertions.java │ │ │ │ │ │ ├── NativeKind.java │ │ │ │ │ │ ├── NativeViewHierarchyManager.java │ │ │ │ │ │ ├── NativeViewHierarchyOptimizer.java │ │ │ │ │ │ ├── NoSuchNativeViewException.java │ │ │ │ │ │ ├── OnLayoutEvent.java │ │ │ │ │ │ ├── PixelUtil.java │ │ │ │ │ │ ├── PointerEvents.java │ │ │ │ │ │ ├── ReactAccessibilityDelegate.java │ │ │ │ │ │ ├── ReactClippingProhibitedView.java │ │ │ │ │ │ ├── ReactClippingViewGroup.java │ │ │ │ │ │ ├── ReactClippingViewGroupHelper.java │ │ │ │ │ │ ├── ReactCompoundView.java │ │ │ │ │ │ ├── ReactCompoundViewGroup.java │ │ │ │ │ │ ├── ReactInvalidPropertyException.java │ │ │ │ │ │ ├── ReactOverflowView.java │ │ │ │ │ │ ├── ReactOverflowViewWithInset.java │ │ │ │ │ │ ├── ReactPointerEventsView.java │ │ │ │ │ │ ├── ReactRoot.java │ │ │ │ │ │ ├── ReactRootViewTagGenerator.java │ │ │ │ │ │ ├── ReactShadowNode.java │ │ │ │ │ │ ├── ReactShadowNodeImpl.java │ │ │ │ │ │ ├── ReactStage.java │ │ │ │ │ │ ├── ReactStylesDiffMap.java │ │ │ │ │ │ ├── ReactYogaConfigProvider.java │ │ │ │ │ │ ├── ReactZIndexedViewGroup.java │ │ │ │ │ │ ├── RootView.java │ │ │ │ │ │ ├── RootViewManager.java │ │ │ │ │ │ ├── RootViewUtil.java │ │ │ │ │ │ ├── ShadowNodeRegistry.java │ │ │ │ │ │ ├── SimpleViewManager.java │ │ │ │ │ │ ├── Spacing.java │ │ │ │ │ │ ├── StateWrapper.java │ │ │ │ │ │ ├── ThemedReactContext.java │ │ │ │ │ │ ├── TouchTargetHelper.java │ │ │ │ │ │ ├── TransformHelper.java │ │ │ │ │ │ ├── UIBlock.java │ │ │ │ │ │ ├── UIConstantsProviderManager.java │ │ │ │ │ │ ├── UIImplementation.java │ │ │ │ │ │ ├── UIManagerHelper.java │ │ │ │ │ │ ├── UIManagerModule.java │ │ │ │ │ │ ├── UIManagerModuleConstants.java │ │ │ │ │ │ ├── UIManagerModuleConstantsHelper.java │ │ │ │ │ │ ├── UIManagerModuleListener.java │ │ │ │ │ │ ├── UIViewOperationQueue.java │ │ │ │ │ │ ├── ViewAtIndex.java │ │ │ │ │ │ ├── ViewDefaults.java │ │ │ │ │ │ ├── ViewGroupDrawingOrderHelper.java │ │ │ │ │ │ ├── ViewGroupManager.java │ │ │ │ │ │ ├── ViewHierarchyDumper.java │ │ │ │ │ │ ├── ViewManager.java │ │ │ │ │ │ ├── ViewManagerDelegate.java │ │ │ │ │ │ ├── ViewManagerPropertyUpdater.java │ │ │ │ │ │ ├── ViewManagerRegistry.java │ │ │ │ │ │ ├── ViewManagerResolver.java │ │ │ │ │ │ ├── ViewManagersPropertyCache.java │ │ │ │ │ │ ├── ViewProps.java │ │ │ │ │ │ ├── YogaNodePool.java │ │ │ │ │ │ ├── annotations │ │ │ │ │ │ │ ├── ReactProp.java │ │ │ │ │ │ │ ├── ReactPropGroup.java │ │ │ │ │ │ │ └── ReactPropertyHolder.java │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── UIManagerType.java │ │ │ │ │ │ │ └── ViewUtil.java │ │ │ │ │ │ ├── debug │ │ │ │ │ │ │ └── NotThreadSafeViewHierarchyUpdateDebugListener.java │ │ │ │ │ │ ├── events │ │ │ │ │ │ │ ├── BatchEventDispatchedListener.java │ │ │ │ │ │ │ ├── BlackHoleEventDispatcher.java │ │ │ │ │ │ │ ├── ContentSizeChangeEvent.java │ │ │ │ │ │ │ ├── Event.java │ │ │ │ │ │ │ ├── EventCategoryDef.java │ │ │ │ │ │ │ ├── EventDispatcher.java │ │ │ │ │ │ │ ├── EventDispatcherImpl.java │ │ │ │ │ │ │ ├── EventDispatcherListener.java │ │ │ │ │ │ │ ├── EventDispatcherProvider.java │ │ │ │ │ │ │ ├── FabricEventDispatcher.java │ │ │ │ │ │ │ ├── NativeGestureUtil.java │ │ │ │ │ │ │ ├── PointerEvent.java │ │ │ │ │ │ │ ├── PointerEventHelper.java │ │ │ │ │ │ │ ├── RCTEventEmitter.java │ │ │ │ │ │ │ ├── RCTModernEventEmitter.java │ │ │ │ │ │ │ ├── ReactEventEmitter.java │ │ │ │ │ │ │ ├── TouchEvent.java │ │ │ │ │ │ │ ├── TouchEventCoalescingKeyHelper.java │ │ │ │ │ │ │ ├── TouchEventType.java │ │ │ │ │ │ │ └── TouchesHelper.java │ │ │ │ │ │ ├── layoutanimation │ │ │ │ │ │ │ ├── AbstractLayoutAnimation.java │ │ │ │ │ │ │ ├── AnimatedPropertyType.java │ │ │ │ │ │ │ ├── BaseLayoutAnimation.java │ │ │ │ │ │ │ ├── InterpolatorType.java │ │ │ │ │ │ │ ├── LayoutAnimationController.java │ │ │ │ │ │ │ ├── LayoutAnimationListener.java │ │ │ │ │ │ │ ├── LayoutAnimationType.java │ │ │ │ │ │ │ ├── LayoutCreateAnimation.java │ │ │ │ │ │ │ ├── LayoutDeleteAnimation.java │ │ │ │ │ │ │ ├── LayoutHandlingAnimation.java │ │ │ │ │ │ │ ├── LayoutUpdateAnimation.java │ │ │ │ │ │ │ ├── OpacityAnimation.java │ │ │ │ │ │ │ ├── PositionAndSizeAnimation.java │ │ │ │ │ │ │ └── SimpleSpringInterpolator.java │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── ReactFindViewUtil.java │ │ │ │ │ ├── util │ │ │ │ │ │ ├── ExceptionDataHelper.java │ │ │ │ │ │ ├── JSStackTrace.java │ │ │ │ │ │ ├── RCTLog.java │ │ │ │ │ │ └── RNLog.java │ │ │ │ │ └── views │ │ │ │ │ │ ├── common │ │ │ │ │ │ ├── ContextUtils.java │ │ │ │ │ │ └── ViewUtils.java │ │ │ │ │ │ ├── debuggingoverlay │ │ │ │ │ │ ├── DebuggingOverlay.java │ │ │ │ │ │ └── DebuggingOverlayManager.java │ │ │ │ │ │ ├── drawer │ │ │ │ │ │ ├── ReactDrawerLayout.java │ │ │ │ │ │ ├── ReactDrawerLayoutManager.java │ │ │ │ │ │ └── events │ │ │ │ │ │ │ ├── DrawerClosedEvent.java │ │ │ │ │ │ │ ├── DrawerOpenedEvent.java │ │ │ │ │ │ │ ├── DrawerSlideEvent.java │ │ │ │ │ │ │ └── DrawerStateChangedEvent.java │ │ │ │ │ │ ├── image │ │ │ │ │ │ ├── GlobalImageLoadListener.java │ │ │ │ │ │ ├── ImageLoadEvent.java │ │ │ │ │ │ ├── ImageResizeMethod.java │ │ │ │ │ │ ├── ImageResizeMode.java │ │ │ │ │ │ ├── MultiPostprocessor.java │ │ │ │ │ │ ├── ReactCallerContextFactory.java │ │ │ │ │ │ ├── ReactImageDownloadListener.java │ │ │ │ │ │ ├── ReactImageManager.java │ │ │ │ │ │ ├── ReactImageView.java │ │ │ │ │ │ └── ScaleTypeStartInside.java │ │ │ │ │ │ ├── imagehelper │ │ │ │ │ │ ├── ImageSource.java │ │ │ │ │ │ ├── MultiSourceHelper.java │ │ │ │ │ │ └── ResourceDrawableIdHelper.java │ │ │ │ │ │ ├── modal │ │ │ │ │ │ ├── ModalHostHelper.java │ │ │ │ │ │ ├── ModalHostShadowNode.java │ │ │ │ │ │ ├── ReactModalHostManager.java │ │ │ │ │ │ ├── ReactModalHostView.java │ │ │ │ │ │ ├── RequestCloseEvent.java │ │ │ │ │ │ └── ShowEvent.java │ │ │ │ │ │ ├── progressbar │ │ │ │ │ │ ├── ProgressBarContainerView.java │ │ │ │ │ │ ├── ProgressBarShadowNode.java │ │ │ │ │ │ └── ReactProgressBarViewManager.java │ │ │ │ │ │ ├── scroll │ │ │ │ │ │ ├── FpsListener.java │ │ │ │ │ │ ├── MaintainVisibleScrollPositionHelper.java │ │ │ │ │ │ ├── OnScrollDispatchHelper.java │ │ │ │ │ │ ├── ReactHorizontalScrollContainerView.java │ │ │ │ │ │ ├── ReactHorizontalScrollContainerViewManager.java │ │ │ │ │ │ ├── ReactHorizontalScrollView.java │ │ │ │ │ │ ├── ReactHorizontalScrollViewManager.java │ │ │ │ │ │ ├── ReactScrollView.java │ │ │ │ │ │ ├── ReactScrollViewAccessibilityDelegate.java │ │ │ │ │ │ ├── ReactScrollViewCommandHelper.java │ │ │ │ │ │ ├── ReactScrollViewHelper.java │ │ │ │ │ │ ├── ReactScrollViewManager.java │ │ │ │ │ │ ├── ScrollEvent.java │ │ │ │ │ │ ├── ScrollEventType.java │ │ │ │ │ │ └── VelocityHelper.java │ │ │ │ │ │ ├── swiperefresh │ │ │ │ │ │ ├── ReactSwipeRefreshLayout.java │ │ │ │ │ │ ├── RefreshEvent.java │ │ │ │ │ │ └── SwipeRefreshLayoutManager.java │ │ │ │ │ │ ├── switchview │ │ │ │ │ │ ├── ReactSwitch.java │ │ │ │ │ │ ├── ReactSwitchEvent.java │ │ │ │ │ │ └── ReactSwitchManager.java │ │ │ │ │ │ ├── text │ │ │ │ │ │ ├── CustomLetterSpacingSpan.java │ │ │ │ │ │ ├── CustomLineHeightSpan.java │ │ │ │ │ │ ├── CustomStyleSpan.java │ │ │ │ │ │ ├── DefaultStyleValuesUtil.java │ │ │ │ │ │ ├── FontMetricsUtil.java │ │ │ │ │ │ ├── ReactAbsoluteSizeSpan.java │ │ │ │ │ │ ├── ReactBackgroundColorSpan.java │ │ │ │ │ │ ├── ReactBaseTextShadowNode.java │ │ │ │ │ │ ├── ReactClickableSpan.java │ │ │ │ │ │ ├── ReactFontManager.java │ │ │ │ │ │ ├── ReactForegroundColorSpan.java │ │ │ │ │ │ ├── ReactRawTextManager.java │ │ │ │ │ │ ├── ReactRawTextShadowNode.java │ │ │ │ │ │ ├── ReactSpan.java │ │ │ │ │ │ ├── ReactStrikethroughSpan.java │ │ │ │ │ │ ├── ReactTagSpan.java │ │ │ │ │ │ ├── ReactTextAnchorViewManager.java │ │ │ │ │ │ ├── ReactTextInlineImageShadowNode.java │ │ │ │ │ │ ├── ReactTextShadowNode.java │ │ │ │ │ │ ├── ReactTextUpdate.java │ │ │ │ │ │ ├── ReactTextView.java │ │ │ │ │ │ ├── ReactTextViewManager.java │ │ │ │ │ │ ├── ReactTextViewManagerCallback.java │ │ │ │ │ │ ├── ReactTypefaceUtils.java │ │ │ │ │ │ ├── ReactUnderlineSpan.java │ │ │ │ │ │ ├── ReactVirtualTextShadowNode.java │ │ │ │ │ │ ├── ReactVirtualTextViewManager.java │ │ │ │ │ │ ├── SetSpanOperation.java │ │ │ │ │ │ ├── ShadowStyleSpan.java │ │ │ │ │ │ ├── TextAttributeProps.java │ │ │ │ │ │ ├── TextAttributes.java │ │ │ │ │ │ ├── TextInlineImageSpan.java │ │ │ │ │ │ ├── TextInlineViewPlaceholderSpan.java │ │ │ │ │ │ ├── TextLayoutManager.java │ │ │ │ │ │ ├── TextLayoutManagerMapBuffer.java │ │ │ │ │ │ ├── TextTransform.java │ │ │ │ │ │ └── frescosupport │ │ │ │ │ │ │ ├── FrescoBasedReactTextInlineImageShadowNode.java │ │ │ │ │ │ │ ├── FrescoBasedReactTextInlineImageSpan.java │ │ │ │ │ │ │ └── FrescoBasedReactTextInlineImageViewManager.java │ │ │ │ │ │ ├── textinput │ │ │ │ │ │ ├── ContentSizeWatcher.java │ │ │ │ │ │ ├── ReactContentSizeChangedEvent.java │ │ │ │ │ │ ├── ReactEditText.java │ │ │ │ │ │ ├── ReactEditTextInputConnectionWrapper.java │ │ │ │ │ │ ├── ReactTextChangedEvent.java │ │ │ │ │ │ ├── ReactTextInputBlurEvent.java │ │ │ │ │ │ ├── ReactTextInputEndEditingEvent.java │ │ │ │ │ │ ├── ReactTextInputEvent.java │ │ │ │ │ │ ├── ReactTextInputFocusEvent.java │ │ │ │ │ │ ├── ReactTextInputKeyPressEvent.java │ │ │ │ │ │ ├── ReactTextInputLocalData.java │ │ │ │ │ │ ├── ReactTextInputManager.java │ │ │ │ │ │ ├── ReactTextInputSelectionEvent.java │ │ │ │ │ │ ├── ReactTextInputShadowNode.java │ │ │ │ │ │ ├── ReactTextInputSubmitEditingEvent.java │ │ │ │ │ │ ├── ScrollWatcher.java │ │ │ │ │ │ └── SelectionWatcher.java │ │ │ │ │ │ ├── unimplementedview │ │ │ │ │ │ ├── ReactUnimplementedView.java │ │ │ │ │ │ └── ReactUnimplementedViewManager.java │ │ │ │ │ │ └── view │ │ │ │ │ │ ├── CanvasUtil.java │ │ │ │ │ │ ├── ColorUtil.java │ │ │ │ │ │ ├── MeasureUtil.java │ │ │ │ │ │ ├── ReactClippingViewManager.java │ │ │ │ │ │ ├── ReactDrawableHelper.java │ │ │ │ │ │ ├── ReactMapBufferPropSetter.kt │ │ │ │ │ │ ├── ReactMapBufferViewManager.kt │ │ │ │ │ │ ├── ReactViewBackgroundDrawable.java │ │ │ │ │ │ ├── ReactViewBackgroundManager.java │ │ │ │ │ │ ├── ReactViewGroup.java │ │ │ │ │ │ ├── ReactViewManager.java │ │ │ │ │ │ ├── ReactViewManagerWrapper.kt │ │ │ │ │ │ └── ViewGroupClickEvent.java │ │ │ │ │ ├── systrace │ │ │ │ │ ├── Systrace.java │ │ │ │ │ ├── SystraceMessage.java │ │ │ │ │ └── TraceListener.java │ │ │ │ │ └── yoga │ │ │ │ │ ├── LayoutPassReason.java │ │ │ │ │ ├── YogaAlign.java │ │ │ │ │ ├── YogaBaselineFunction.java │ │ │ │ │ ├── YogaConfig.java │ │ │ │ │ ├── YogaConfigFactory.java │ │ │ │ │ ├── YogaConfigJNIBase.java │ │ │ │ │ ├── YogaConfigJNIFinalizer.java │ │ │ │ │ ├── YogaConstants.java │ │ │ │ │ ├── YogaDimension.java │ │ │ │ │ ├── YogaDirection.java │ │ │ │ │ ├── YogaDisplay.java │ │ │ │ │ ├── YogaEdge.java │ │ │ │ │ ├── YogaErrata.java │ │ │ │ │ ├── YogaExperimentalFeature.java │ │ │ │ │ ├── YogaFlexDirection.java │ │ │ │ │ ├── YogaGutter.java │ │ │ │ │ ├── YogaJustify.java │ │ │ │ │ ├── YogaLayoutType.java │ │ │ │ │ ├── YogaLogLevel.java │ │ │ │ │ ├── YogaLogger.java │ │ │ │ │ ├── YogaMeasureFunction.java │ │ │ │ │ ├── YogaMeasureMode.java │ │ │ │ │ ├── YogaMeasureOutput.java │ │ │ │ │ ├── YogaNative.java │ │ │ │ │ ├── YogaNode.java │ │ │ │ │ ├── YogaNodeFactory.java │ │ │ │ │ ├── YogaNodeJNIBase.java │ │ │ │ │ ├── YogaNodeJNIFinalizer.java │ │ │ │ │ ├── YogaNodeType.java │ │ │ │ │ ├── YogaOverflow.java │ │ │ │ │ ├── YogaPositionType.java │ │ │ │ │ ├── YogaPrintOptions.java │ │ │ │ │ ├── YogaProps.java │ │ │ │ │ ├── YogaStyleInputs.java │ │ │ │ │ ├── YogaUnit.java │ │ │ │ │ ├── YogaValue.java │ │ │ │ │ ├── YogaWrap.java │ │ │ │ │ └── annotations │ │ │ │ │ └── DoNotStrip.java │ │ │ ├── jni │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── first-party │ │ │ │ │ ├── .clang-tidy │ │ │ │ │ ├── fb │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── assert.cpp │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ └── fb │ │ │ │ │ │ │ │ ├── ALog.h │ │ │ │ │ │ │ │ ├── Build.h │ │ │ │ │ │ │ │ ├── Countable.h │ │ │ │ │ │ │ │ ├── Doxyfile │ │ │ │ │ │ │ │ ├── Environment.h │ │ │ │ │ │ │ │ ├── ProgramLocation.h │ │ │ │ │ │ │ │ ├── RefPtr.h │ │ │ │ │ │ │ │ ├── StaticInitialized.h │ │ │ │ │ │ │ │ ├── ThreadLocal.h │ │ │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ │ │ ├── log.h │ │ │ │ │ │ │ │ ├── noncopyable.h │ │ │ │ │ │ │ │ ├── nonmovable.h │ │ │ │ │ │ │ │ └── visibility.h │ │ │ │ │ │ └── log.cpp │ │ │ │ │ ├── fbgloginit │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── fb │ │ │ │ │ │ │ └── glog_init.h │ │ │ │ │ │ └── glog_init.cpp │ │ │ │ │ ├── hermes │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── jni-hack │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── jni.h │ │ │ │ │ │ └── real │ │ │ │ │ │ │ └── jni.h │ │ │ │ │ └── yogajni │ │ │ │ │ │ ├── .clang-tidy │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── jni │ │ │ │ │ │ ├── LayoutContext.cpp │ │ │ │ │ │ ├── LayoutContext.h │ │ │ │ │ │ ├── ScopedGlobalRef.h │ │ │ │ │ │ ├── ScopedLocalRef.h │ │ │ │ │ │ ├── YGJNI.h │ │ │ │ │ │ ├── YGJNIVanilla.cpp │ │ │ │ │ │ ├── YGJNIVanilla.h │ │ │ │ │ │ ├── YGJTypesVanilla.h │ │ │ │ │ │ ├── YogaJniException.cpp │ │ │ │ │ │ ├── YogaJniException.h │ │ │ │ │ │ ├── common.cpp │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ ├── corefunctions.cpp │ │ │ │ │ │ ├── corefunctions.h │ │ │ │ │ │ ├── macros.h │ │ │ │ │ │ └── yogajni.cpp │ │ │ │ ├── prebuilt │ │ │ │ │ └── lib │ │ │ │ │ │ └── DUMMY │ │ │ │ ├── react │ │ │ │ │ ├── devsupport │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── JCxxInspectorPackagerConnection.cpp │ │ │ │ │ │ ├── JCxxInspectorPackagerConnection.h │ │ │ │ │ │ ├── JCxxInspectorPackagerConnectionDelegateImpl.cpp │ │ │ │ │ │ ├── JCxxInspectorPackagerConnectionDelegateImpl.h │ │ │ │ │ │ ├── JCxxInspectorPackagerConnectionWebSocket.cpp │ │ │ │ │ │ ├── JCxxInspectorPackagerConnectionWebSocket.h │ │ │ │ │ │ ├── JCxxInspectorPackagerConnectionWebSocketDelegate.cpp │ │ │ │ │ │ ├── JCxxInspectorPackagerConnectionWebSocketDelegate.h │ │ │ │ │ │ ├── JInspectorFlags.cpp │ │ │ │ │ │ ├── JInspectorFlags.h │ │ │ │ │ │ ├── JOptional.cpp │ │ │ │ │ │ ├── JOptional.h │ │ │ │ │ │ └── OnLoad.cpp │ │ │ │ │ ├── fabric │ │ │ │ │ │ ├── AsyncEventBeat.cpp │ │ │ │ │ │ ├── AsyncEventBeat.h │ │ │ │ │ │ ├── Binding.cpp │ │ │ │ │ │ ├── Binding.h │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── ComponentFactory.cpp │ │ │ │ │ │ ├── ComponentFactory.h │ │ │ │ │ │ ├── CoreComponentsRegistry.cpp │ │ │ │ │ │ ├── CoreComponentsRegistry.h │ │ │ │ │ │ ├── EventBeatManager.cpp │ │ │ │ │ │ ├── EventBeatManager.h │ │ │ │ │ │ ├── EventEmitterWrapper.cpp │ │ │ │ │ │ ├── EventEmitterWrapper.h │ │ │ │ │ │ ├── FabricMountingManager.cpp │ │ │ │ │ │ ├── FabricMountingManager.h │ │ │ │ │ │ ├── JBackgroundExecutor.cpp │ │ │ │ │ │ ├── JBackgroundExecutor.h │ │ │ │ │ │ ├── JFabricUIManager.cpp │ │ │ │ │ │ ├── JFabricUIManager.h │ │ │ │ │ │ ├── MountItem.cpp │ │ │ │ │ │ ├── MountItem.h │ │ │ │ │ │ ├── OnLoad.cpp │ │ │ │ │ │ ├── ReactNativeConfigHolder.cpp │ │ │ │ │ │ ├── ReactNativeConfigHolder.h │ │ │ │ │ │ ├── StateWrapperImpl.cpp │ │ │ │ │ │ ├── StateWrapperImpl.h │ │ │ │ │ │ ├── SurfaceHandlerBinding.cpp │ │ │ │ │ │ └── SurfaceHandlerBinding.h │ │ │ │ │ ├── hermes │ │ │ │ │ │ ├── .clang-tidy │ │ │ │ │ │ ├── instrumentation │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ ├── HermesMemoryDumper.h │ │ │ │ │ │ │ ├── HermesSamplingProfiler.cpp │ │ │ │ │ │ │ ├── HermesSamplingProfiler.h │ │ │ │ │ │ │ └── OnLoad.cpp │ │ │ │ │ │ └── reactexecutor │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ └── OnLoad.cpp │ │ │ │ │ ├── jni │ │ │ │ │ │ ├── .clang-tidy │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── CatalystInstanceImpl.cpp │ │ │ │ │ │ ├── CatalystInstanceImpl.h │ │ │ │ │ │ ├── CxxModuleWrapper.h │ │ │ │ │ │ ├── CxxModuleWrapperBase.h │ │ │ │ │ │ ├── CxxSharedModuleWrapper.h │ │ │ │ │ │ ├── JCallback.h │ │ │ │ │ │ ├── JInspector.cpp │ │ │ │ │ │ ├── JInspector.h │ │ │ │ │ │ ├── JMessageQueueThread.cpp │ │ │ │ │ │ ├── JMessageQueueThread.h │ │ │ │ │ │ ├── JReactCxxErrorHandler.cpp │ │ │ │ │ │ ├── JReactCxxErrorHandler.h │ │ │ │ │ │ ├── JReactMarker.cpp │ │ │ │ │ │ ├── JReactMarker.h │ │ │ │ │ │ ├── JReactSoftExceptionLogger.cpp │ │ │ │ │ │ ├── JReactSoftExceptionLogger.h │ │ │ │ │ │ ├── JRuntimeExecutor.cpp │ │ │ │ │ │ ├── JRuntimeExecutor.h │ │ │ │ │ │ ├── JRuntimeScheduler.cpp │ │ │ │ │ │ ├── JRuntimeScheduler.h │ │ │ │ │ │ ├── JSLoader.cpp │ │ │ │ │ │ ├── JSLoader.h │ │ │ │ │ │ ├── JSLogging.cpp │ │ │ │ │ │ ├── JSLogging.h │ │ │ │ │ │ ├── JavaModuleWrapper.cpp │ │ │ │ │ │ ├── JavaModuleWrapper.h │ │ │ │ │ │ ├── JavaScriptExecutorHolder.h │ │ │ │ │ │ ├── JniJSModulesUnbundle.cpp │ │ │ │ │ │ ├── JniJSModulesUnbundle.h │ │ │ │ │ │ ├── MethodInvoker.cpp │ │ │ │ │ │ ├── MethodInvoker.h │ │ │ │ │ │ ├── ModuleRegistryBuilder.cpp │ │ │ │ │ │ ├── ModuleRegistryBuilder.h │ │ │ │ │ │ ├── NativeArray.cpp │ │ │ │ │ │ ├── NativeArray.h │ │ │ │ │ │ ├── NativeCommon.cpp │ │ │ │ │ │ ├── NativeCommon.h │ │ │ │ │ │ ├── NativeMap.cpp │ │ │ │ │ │ ├── NativeMap.h │ │ │ │ │ │ ├── OnLoad.cpp │ │ │ │ │ │ ├── OnLoad.h │ │ │ │ │ │ ├── ProxyExecutor.cpp │ │ │ │ │ │ ├── ProxyExecutor.h │ │ │ │ │ │ ├── ReadableNativeArray.cpp │ │ │ │ │ │ ├── ReadableNativeArray.h │ │ │ │ │ │ ├── ReadableNativeMap.cpp │ │ │ │ │ │ ├── ReadableNativeMap.h │ │ │ │ │ │ ├── WritableNativeArray.cpp │ │ │ │ │ │ ├── WritableNativeArray.h │ │ │ │ │ │ ├── WritableNativeMap.cpp │ │ │ │ │ │ └── WritableNativeMap.h │ │ │ │ │ ├── jscexecutor │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── OnLoad.cpp │ │ │ │ │ ├── mapbuffer │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── react │ │ │ │ │ │ │ └── common │ │ │ │ │ │ │ └── mapbuffer │ │ │ │ │ │ │ ├── .clang-tidy │ │ │ │ │ │ │ ├── JReadableMapBuffer.cpp │ │ │ │ │ │ │ ├── JReadableMapBuffer.h │ │ │ │ │ │ │ ├── JWritableMapBuffer.cpp │ │ │ │ │ │ │ ├── JWritableMapBuffer.h │ │ │ │ │ │ │ └── OnLoad.cpp │ │ │ │ │ ├── newarchdefaults │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── DefaultComponentsRegistry.cpp │ │ │ │ │ │ ├── DefaultComponentsRegistry.h │ │ │ │ │ │ ├── DefaultTurboModuleManagerDelegate.cpp │ │ │ │ │ │ ├── DefaultTurboModuleManagerDelegate.h │ │ │ │ │ │ └── OnLoad.cpp │ │ │ │ │ ├── perftests │ │ │ │ │ │ └── OnLoad.cpp │ │ │ │ │ ├── reactnativeblob │ │ │ │ │ │ ├── BlobCollector.cpp │ │ │ │ │ │ ├── BlobCollector.h │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── OnLoad.cpp │ │ │ │ │ ├── reactperflogger │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── reactperflogger │ │ │ │ │ │ │ ├── .clang-tidy │ │ │ │ │ │ │ ├── JNativeModulePerfLogger.h │ │ │ │ │ │ │ └── OnLoad.cpp │ │ │ │ │ ├── runtime │ │ │ │ │ │ ├── cxxreactpackage │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ └── ReactCommon │ │ │ │ │ │ │ │ ├── CxxReactPackage.h │ │ │ │ │ │ │ │ └── OnLoad.cpp │ │ │ │ │ │ ├── hermes │ │ │ │ │ │ │ └── jni │ │ │ │ │ │ │ │ ├── .clang-tidy │ │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ │ ├── JHermesInstance.cpp │ │ │ │ │ │ │ │ ├── JHermesInstance.h │ │ │ │ │ │ │ │ └── OnLoad.cpp │ │ │ │ │ │ ├── jni │ │ │ │ │ │ │ ├── .clang-tidy │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ ├── JBindingsInstaller.h │ │ │ │ │ │ │ ├── JJSRuntimeFactory.h │ │ │ │ │ │ │ ├── JJSTimerExecutor.cpp │ │ │ │ │ │ │ ├── JJSTimerExecutor.h │ │ │ │ │ │ │ ├── JJavaTimerManager.cpp │ │ │ │ │ │ │ ├── JJavaTimerManager.h │ │ │ │ │ │ │ ├── JReactExceptionManager.cpp │ │ │ │ │ │ │ ├── JReactExceptionManager.h │ │ │ │ │ │ │ ├── JReactInstance.cpp │ │ │ │ │ │ │ ├── JReactInstance.h │ │ │ │ │ │ │ ├── JavaTimerRegistry.cpp │ │ │ │ │ │ │ ├── JavaTimerRegistry.h │ │ │ │ │ │ │ └── OnLoad.cpp │ │ │ │ │ │ └── jsc │ │ │ │ │ │ │ └── jni │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ └── OnLoad.cpp │ │ │ │ │ ├── turbomodule │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── ReactCommon │ │ │ │ │ │ │ ├── CallInvokerHolder.cpp │ │ │ │ │ │ │ ├── CallInvokerHolder.h │ │ │ │ │ │ │ ├── CompositeTurboModuleManagerDelegate.cpp │ │ │ │ │ │ │ ├── CompositeTurboModuleManagerDelegate.h │ │ │ │ │ │ │ ├── NativeMethodCallInvokerHolder.cpp │ │ │ │ │ │ │ ├── NativeMethodCallInvokerHolder.h │ │ │ │ │ │ │ ├── OnLoad.cpp │ │ │ │ │ │ │ ├── TurboModuleManager.cpp │ │ │ │ │ │ │ ├── TurboModuleManager.h │ │ │ │ │ │ │ └── TurboModuleManagerDelegate.h │ │ │ │ │ └── uimanager │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── ComponentNameResolverManager.cpp │ │ │ │ │ │ ├── ComponentNameResolverManager.h │ │ │ │ │ │ ├── OnLoad.cpp │ │ │ │ │ │ ├── UIConstantsProviderManager.cpp │ │ │ │ │ │ └── UIConstantsProviderManager.h │ │ │ │ └── third-party │ │ │ │ │ ├── boost │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── asm │ │ │ │ │ │ ├── arm64-v8a │ │ │ │ │ │ ├── jump_arm64_aapcs_elf_gas.S │ │ │ │ │ │ ├── make_arm64_aapcs_elf_gas.S │ │ │ │ │ │ └── ontop_arm64_aapcs_elf_gas.S │ │ │ │ │ │ ├── armeabi-v7a │ │ │ │ │ │ ├── jump_arm_aapcs_elf_gas.S │ │ │ │ │ │ ├── make_arm_aapcs_elf_gas.S │ │ │ │ │ │ └── ontop_arm_aapcs_elf_gas.S │ │ │ │ │ │ ├── x86 │ │ │ │ │ │ ├── jump_i386_sysv_elf_gas.S │ │ │ │ │ │ ├── make_i386_sysv_elf_gas.S │ │ │ │ │ │ └── ontop_i386_sysv_elf_gas.S │ │ │ │ │ │ └── x86_64 │ │ │ │ │ │ ├── jump_x86_64_sysv_elf_gas.S │ │ │ │ │ │ ├── make_x86_64_sysv_elf_gas.S │ │ │ │ │ │ └── ontop_x86_64_sysv_elf_gas.S │ │ │ │ │ ├── double-conversion │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── fmt │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── folly │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── glog │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── config.h │ │ │ │ │ └── jsc │ │ │ │ │ └── CMakeLists.txt │ │ │ └── res │ │ │ │ ├── devsupport │ │ │ │ ├── anim │ │ │ │ │ ├── catalyst_push_up_in.xml │ │ │ │ │ └── catalyst_push_up_out.xml │ │ │ │ ├── drawable │ │ │ │ │ └── redbox_top_border_background.xml │ │ │ │ ├── layout │ │ │ │ │ ├── dev_loading_view.xml │ │ │ │ │ ├── fps_view.xml │ │ │ │ │ ├── redbox_item_frame.xml │ │ │ │ │ ├── redbox_item_title.xml │ │ │ │ │ └── redbox_view.xml │ │ │ │ ├── values-af │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-ar │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-az │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-be │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-bg │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-bn │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-ca │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-cs │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-da │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-de │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-el │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-en-rGB │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-es-rES │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-es │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-et │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-fa │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-fi │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-fr-rCA │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-fr │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-gu │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-hi │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-hr │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-hu │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-hy │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-is │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-it │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-iw │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-ja │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-ka │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-kk │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-km │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-kn │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-ko │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-ky │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-lo │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-lt │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-lv │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-mk │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-ml │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-mn │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-mr │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-ms │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-my │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-ne │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-nl │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-pa │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-pl │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-pt-rPT │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-pt │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-ro │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-ru │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-si │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-sk │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-sl │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-sq │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-sr │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-sv │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-sw │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-ta │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-te │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-th │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-tr │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-uk │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-ur │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-vi │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-zh-rCN │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-zh-rHK │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-zh-rTW │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-zu │ │ │ │ │ └── strings.xml │ │ │ │ ├── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ └── xml │ │ │ │ │ └── rn_dev_preferences.xml │ │ │ │ ├── shell │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ ├── systeminfo │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ │ └── views │ │ │ │ ├── modal │ │ │ │ ├── anim │ │ │ │ │ ├── catalyst_fade_in.xml │ │ │ │ │ ├── catalyst_fade_out.xml │ │ │ │ │ ├── catalyst_slide_down.xml │ │ │ │ │ └── catalyst_slide_up.xml │ │ │ │ └── values │ │ │ │ │ └── themes.xml │ │ │ │ └── uimanager │ │ │ │ ├── values-af │ │ │ │ └── strings.xml │ │ │ │ ├── values-ar │ │ │ │ └── strings.xml │ │ │ │ ├── values-az │ │ │ │ └── strings.xml │ │ │ │ ├── values-be │ │ │ │ └── strings.xml │ │ │ │ ├── values-bg │ │ │ │ └── strings.xml │ │ │ │ ├── values-bn │ │ │ │ └── strings.xml │ │ │ │ ├── values-ca │ │ │ │ └── strings.xml │ │ │ │ ├── values-cs │ │ │ │ └── strings.xml │ │ │ │ ├── values-da │ │ │ │ └── strings.xml │ │ │ │ ├── values-de │ │ │ │ └── strings.xml │ │ │ │ ├── values-el │ │ │ │ └── strings.xml │ │ │ │ ├── values-en-rGB │ │ │ │ └── strings.xml │ │ │ │ ├── values-es-rES │ │ │ │ └── strings.xml │ │ │ │ ├── values-es │ │ │ │ └── strings.xml │ │ │ │ ├── values-et │ │ │ │ └── strings.xml │ │ │ │ ├── values-fa │ │ │ │ └── strings.xml │ │ │ │ ├── values-fi │ │ │ │ └── strings.xml │ │ │ │ ├── values-fr-rCA │ │ │ │ └── strings.xml │ │ │ │ ├── values-fr │ │ │ │ └── strings.xml │ │ │ │ ├── values-gu │ │ │ │ └── strings.xml │ │ │ │ ├── values-hi │ │ │ │ └── strings.xml │ │ │ │ ├── values-hr │ │ │ │ └── strings.xml │ │ │ │ ├── values-hu │ │ │ │ └── strings.xml │ │ │ │ ├── values-hy │ │ │ │ └── strings.xml │ │ │ │ ├── values-is │ │ │ │ └── strings.xml │ │ │ │ ├── values-it │ │ │ │ └── strings.xml │ │ │ │ ├── values-iw │ │ │ │ └── strings.xml │ │ │ │ ├── values-ja │ │ │ │ └── strings.xml │ │ │ │ ├── values-ka │ │ │ │ └── strings.xml │ │ │ │ ├── values-kk │ │ │ │ └── strings.xml │ │ │ │ ├── values-km │ │ │ │ └── strings.xml │ │ │ │ ├── values-kn │ │ │ │ └── strings.xml │ │ │ │ ├── values-ko │ │ │ │ └── strings.xml │ │ │ │ ├── values-ky │ │ │ │ └── strings.xml │ │ │ │ ├── values-lo │ │ │ │ └── strings.xml │ │ │ │ ├── values-lt │ │ │ │ └── strings.xml │ │ │ │ ├── values-lv │ │ │ │ └── strings.xml │ │ │ │ ├── values-mk │ │ │ │ └── strings.xml │ │ │ │ ├── values-ml │ │ │ │ └── strings.xml │ │ │ │ ├── values-mn │ │ │ │ └── strings.xml │ │ │ │ ├── values-mr │ │ │ │ └── strings.xml │ │ │ │ ├── values-ms │ │ │ │ └── strings.xml │ │ │ │ ├── values-my │ │ │ │ └── strings.xml │ │ │ │ ├── values-ne │ │ │ │ └── strings.xml │ │ │ │ ├── values-nl │ │ │ │ └── strings.xml │ │ │ │ ├── values-pa │ │ │ │ └── strings.xml │ │ │ │ ├── values-pl │ │ │ │ └── strings.xml │ │ │ │ ├── values-pt-rPT │ │ │ │ └── strings.xml │ │ │ │ ├── values-pt │ │ │ │ └── strings.xml │ │ │ │ ├── values-ro │ │ │ │ └── strings.xml │ │ │ │ ├── values-ru │ │ │ │ └── strings.xml │ │ │ │ ├── values-si │ │ │ │ └── strings.xml │ │ │ │ ├── values-sk │ │ │ │ └── strings.xml │ │ │ │ ├── values-sl │ │ │ │ └── strings.xml │ │ │ │ ├── values-sq │ │ │ │ └── strings.xml │ │ │ │ ├── values-sr │ │ │ │ └── strings.xml │ │ │ │ ├── values-sv │ │ │ │ └── strings.xml │ │ │ │ ├── values-sw │ │ │ │ └── strings.xml │ │ │ │ ├── values-ta │ │ │ │ └── strings.xml │ │ │ │ ├── values-te │ │ │ │ └── strings.xml │ │ │ │ ├── values-th │ │ │ │ └── strings.xml │ │ │ │ ├── values-tr │ │ │ │ └── strings.xml │ │ │ │ ├── values-uk │ │ │ │ └── strings.xml │ │ │ │ ├── values-ur │ │ │ │ └── strings.xml │ │ │ │ ├── values-vi │ │ │ │ └── strings.xml │ │ │ │ ├── values-zh-rCN │ │ │ │ └── strings.xml │ │ │ │ ├── values-zh-rHK │ │ │ │ └── strings.xml │ │ │ │ ├── values-zh-rTW │ │ │ │ └── strings.xml │ │ │ │ ├── values-zu │ │ │ │ └── strings.xml │ │ │ │ └── values │ │ │ │ ├── ids.xml │ │ │ │ └── strings.xml │ │ │ └── test │ │ │ ├── java │ │ │ ├── com │ │ │ │ └── facebook │ │ │ │ │ ├── common │ │ │ │ │ └── logging │ │ │ │ │ │ └── FakeLoggingDelegate.kt │ │ │ │ │ ├── react │ │ │ │ │ ├── CompositeReactPackageTest.kt │ │ │ │ │ ├── ReactActivityDelegateTest.kt │ │ │ │ │ ├── RootViewTest.kt │ │ │ │ │ ├── animated │ │ │ │ │ │ ├── NativeAnimatedInterpolationTest.kt │ │ │ │ │ │ └── NativeAnimatedNodeTraversalTest.kt │ │ │ │ │ ├── bridge │ │ │ │ │ │ ├── BaseJavaModuleTest.kt │ │ │ │ │ │ ├── FallbackJSBundleLoaderTest.kt │ │ │ │ │ │ ├── JavaOnlyArrayTest.kt │ │ │ │ │ │ ├── JavaScriptModuleRegistryTest.kt │ │ │ │ │ │ ├── ReactTestHelper.kt │ │ │ │ │ │ └── interop │ │ │ │ │ │ │ ├── FakeRCTEventEmitter.kt │ │ │ │ │ │ │ └── InteropModuleRegistryTest.kt │ │ │ │ │ ├── devsupport │ │ │ │ │ │ ├── JSDebuggerWebSocketClientTest.kt │ │ │ │ │ │ ├── MultipartStreamReaderTest.kt │ │ │ │ │ │ └── StackTraceHelperTest.kt │ │ │ │ │ ├── fabric │ │ │ │ │ │ ├── FabricUIManagerTest.kt │ │ │ │ │ │ └── events │ │ │ │ │ │ │ └── TouchEventDispatchTest.kt │ │ │ │ │ ├── internal │ │ │ │ │ │ └── interop │ │ │ │ │ │ │ └── InteropEventEmitterTest.kt │ │ │ │ │ ├── modules │ │ │ │ │ │ ├── blob │ │ │ │ │ │ │ └── BlobModuleTest.kt │ │ │ │ │ │ ├── camera │ │ │ │ │ │ │ └── ImageStoreManagerTest.kt │ │ │ │ │ │ ├── clipboard │ │ │ │ │ │ │ └── ClipboardModuleTest.kt │ │ │ │ │ │ ├── deviceinfo │ │ │ │ │ │ │ └── DeviceInfoModuleTest.kt │ │ │ │ │ │ ├── dialog │ │ │ │ │ │ │ └── DialogModuleTest.kt │ │ │ │ │ │ ├── network │ │ │ │ │ │ │ ├── HeaderUtilTest.kt │ │ │ │ │ │ │ ├── NetworkingModuleTest.kt │ │ │ │ │ │ │ ├── ProgressiveStringDecoderTest.kt │ │ │ │ │ │ │ └── ReactCookieJarContainerTest.kt │ │ │ │ │ │ ├── share │ │ │ │ │ │ │ └── ShareModuleTest.kt │ │ │ │ │ │ └── timing │ │ │ │ │ │ │ └── TimingModuleTest.kt │ │ │ │ │ ├── packagerconnection │ │ │ │ │ │ └── JSPackagerClientTest.kt │ │ │ │ │ ├── runtime │ │ │ │ │ │ ├── BridgelessReactContextTest.kt │ │ │ │ │ │ ├── ReactHostDelegateTest.kt │ │ │ │ │ │ ├── ReactHostTest.kt │ │ │ │ │ │ └── ReactSurfaceTest.kt │ │ │ │ │ ├── uimanager │ │ │ │ │ │ ├── BaseViewManagerTest.kt │ │ │ │ │ │ ├── JSPointerDispatcherTest.kt │ │ │ │ │ │ ├── MatrixMathHelperTest.kt │ │ │ │ │ │ ├── ReactPropAnnotationSetterSpecTest.kt │ │ │ │ │ │ ├── ReactPropAnnotationSetterTest.kt │ │ │ │ │ │ ├── ReactPropConstantsTest.kt │ │ │ │ │ │ ├── ReactPropForShadowNodeSetterTest.kt │ │ │ │ │ │ ├── ReactPropForShadowNodeSpecTest.kt │ │ │ │ │ │ ├── SimpleViewPropertyTest.kt │ │ │ │ │ │ ├── UIManagerModuleConstantsHelperTest.kt │ │ │ │ │ │ ├── UIManagerModuleConstantsTest.kt │ │ │ │ │ │ └── layoutanimation │ │ │ │ │ │ │ └── InterpolatorTypeTest.kt │ │ │ │ │ ├── util │ │ │ │ │ │ └── JSStackTraceTest.kt │ │ │ │ │ └── views │ │ │ │ │ │ ├── image │ │ │ │ │ │ ├── ImageResizeModeTest.kt │ │ │ │ │ │ └── ReactImagePropertyTest.kt │ │ │ │ │ │ ├── text │ │ │ │ │ │ └── CustomLineHeightSpanTest.kt │ │ │ │ │ │ ├── textinput │ │ │ │ │ │ └── ReactTextInputPropertyTest.kt │ │ │ │ │ │ └── view │ │ │ │ │ │ └── ColorUtilTest.kt │ │ │ │ │ └── testutils │ │ │ │ │ ├── fakes │ │ │ │ │ ├── FakeBatchEventDispatchedListener.kt │ │ │ │ │ ├── FakeEventDispatcher.kt │ │ │ │ │ ├── FakeYogaConfig.kt │ │ │ │ │ └── FakeYogaNode.kt │ │ │ │ │ └── shadows │ │ │ │ │ ├── ShadowArguments.kt │ │ │ │ │ ├── ShadowSoLoader.kt │ │ │ │ │ ├── ShadowYogaConfigProvider.kt │ │ │ │ │ └── ShadowYogaNodeFactory.kt │ │ │ └── org │ │ │ │ └── mockito │ │ │ │ └── configuration │ │ │ │ └── MockitoConfiguration.kt │ │ │ └── resources │ │ │ ├── mockito-extensions │ │ │ └── org.mockito.plugins.MockMaker │ │ │ └── robolectric.properties │ ├── ReactApple │ │ ├── Libraries │ │ │ └── RCTFoundation │ │ │ │ ├── RCTDeprecation │ │ │ │ ├── Exported │ │ │ │ │ └── RCTDeprecation.h │ │ │ │ ├── RCTDeprecation.m │ │ │ │ ├── RCTDeprecation.podspec │ │ │ │ └── README.md │ │ │ │ └── README.md │ │ └── README.md │ ├── ReactCommon │ │ ├── .clang-tidy │ │ ├── React-Fabric.podspec │ │ ├── React-FabricImage.podspec │ │ ├── React-Mapbuffer.podspec │ │ ├── React-nativeconfig.podspec │ │ ├── React-rncore.podspec │ │ ├── ReactCommon.podspec │ │ ├── butter │ │ │ ├── .clang-tidy │ │ │ ├── CMakeLists.txt │ │ │ ├── butter.h │ │ │ └── map.h │ │ ├── callinvoker │ │ │ ├── .clang-tidy │ │ │ ├── CMakeLists.txt │ │ │ ├── React-callinvoker.podspec │ │ │ └── ReactCommon │ │ │ │ ├── CallInvoker.h │ │ │ │ └── SchedulerPriority.h │ │ ├── cxxreact │ │ │ ├── .clang-tidy │ │ │ ├── CMakeLists.txt │ │ │ ├── CxxModule.h │ │ │ ├── CxxNativeModule.cpp │ │ │ ├── CxxNativeModule.h │ │ │ ├── ErrorUtils.h │ │ │ ├── Instance.cpp │ │ │ ├── Instance.h │ │ │ ├── JSBigString.cpp │ │ │ ├── JSBigString.h │ │ │ ├── JSBundleType.cpp │ │ │ ├── JSBundleType.h │ │ │ ├── JSExecutor.cpp │ │ │ ├── JSExecutor.h │ │ │ ├── JSIndexedRAMBundle.cpp │ │ │ ├── JSIndexedRAMBundle.h │ │ │ ├── JSModulesUnbundle.h │ │ │ ├── JsArgumentHelpers-inl.h │ │ │ ├── JsArgumentHelpers.h │ │ │ ├── MessageQueueThread.h │ │ │ ├── MethodCall.cpp │ │ │ ├── MethodCall.h │ │ │ ├── ModuleRegistry.cpp │ │ │ ├── ModuleRegistry.h │ │ │ ├── MoveWrapper.h │ │ │ ├── NativeModule.h │ │ │ ├── NativeToJsBridge.cpp │ │ │ ├── NativeToJsBridge.h │ │ │ ├── RAMBundleRegistry.cpp │ │ │ ├── RAMBundleRegistry.h │ │ │ ├── React-cxxreact.podspec │ │ │ ├── ReactMarker.cpp │ │ │ ├── ReactMarker.h │ │ │ ├── ReactNativeVersion.h │ │ │ ├── RecoverableError.h │ │ │ ├── SampleCxxModule.cpp │ │ │ ├── SampleCxxModule.h │ │ │ ├── SharedProxyCxxModule.h │ │ │ ├── SystraceSection.h │ │ │ └── tests │ │ │ │ ├── RecoverableErrorTest.cpp │ │ │ │ ├── jsarg_helpers.cpp │ │ │ │ ├── jsbigstring.cpp │ │ │ │ ├── main.cpp │ │ │ │ └── methodcall.cpp │ │ ├── hermes │ │ │ ├── .clang-tidy │ │ │ ├── React-hermes.podspec │ │ │ ├── executor │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── HermesExecutorFactory.cpp │ │ │ │ ├── HermesExecutorFactory.h │ │ │ │ └── React-jsitracing.podspec │ │ │ └── inspector-modern │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── chrome │ │ │ │ ├── ConnectionDemux.cpp │ │ │ │ ├── ConnectionDemux.h │ │ │ │ ├── Registration.cpp │ │ │ │ ├── Registration.h │ │ │ │ └── tests │ │ │ │ └── ConnectionDemuxTests.cpp │ │ ├── jsc │ │ │ ├── .clang-tidy │ │ │ ├── CMakeLists.txt │ │ │ ├── JSCRuntime.cpp │ │ │ ├── JSCRuntime.h │ │ │ └── React-jsc.podspec │ │ ├── jsengineinstance │ │ │ └── .clang-tidy │ │ ├── jserrorhandler │ │ │ ├── CMakeLists.txt │ │ │ ├── JsErrorHandler.cpp │ │ │ ├── JsErrorHandler.h │ │ │ └── React-jserrorhandler.podspec │ │ ├── jsi │ │ │ ├── .clang-tidy │ │ │ ├── CMakeLists.txt │ │ │ ├── React-jsi.podspec │ │ │ └── jsi │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── JSIDynamic.cpp │ │ │ │ ├── JSIDynamic.h │ │ │ │ ├── decorator.h │ │ │ │ ├── instrumentation.h │ │ │ │ ├── jsi-inl.h │ │ │ │ ├── jsi.cpp │ │ │ │ ├── jsi.h │ │ │ │ ├── jsilib-posix.cpp │ │ │ │ ├── jsilib-windows.cpp │ │ │ │ ├── jsilib.h │ │ │ │ ├── test │ │ │ │ ├── testlib.cpp │ │ │ │ └── testlib.h │ │ │ │ └── threadsafe.h │ │ ├── jsiexecutor │ │ │ ├── .clang-tidy │ │ │ ├── CMakeLists.txt │ │ │ ├── React-jsiexecutor.podspec │ │ │ └── jsireact │ │ │ │ ├── JSIExecutor.cpp │ │ │ │ ├── JSIExecutor.h │ │ │ │ ├── JSINativeModules.cpp │ │ │ │ └── JSINativeModules.h │ │ ├── jsinspector-modern │ │ │ ├── .clang-tidy │ │ │ ├── CMakeLists.txt │ │ │ ├── InspectorFlags.cpp │ │ │ ├── InspectorFlags.h │ │ │ ├── InspectorInterfaces.cpp │ │ │ ├── InspectorInterfaces.h │ │ │ ├── InspectorPackagerConnection.cpp │ │ │ ├── InspectorPackagerConnection.h │ │ │ ├── InspectorPackagerConnectionImpl.h │ │ │ ├── React-jsinspector.podspec │ │ │ ├── WebSocketInterfaces.h │ │ │ └── tests │ │ │ │ ├── FollyDynamicMatchers.cpp │ │ │ │ ├── FollyDynamicMatchers.h │ │ │ │ ├── InspectorMocks.h │ │ │ │ ├── InspectorPackagerConnectionTest.cpp │ │ │ │ ├── UniquePtrFactory.h │ │ │ │ └── UniquePtrFactoryTest.cpp │ │ ├── logger │ │ │ ├── CMakeLists.txt │ │ │ ├── React-logger.podspec │ │ │ ├── react_native_log.cpp │ │ │ └── react_native_log.h │ │ ├── react │ │ │ ├── bridging │ │ │ │ ├── AString.h │ │ │ │ ├── Array.h │ │ │ │ ├── Base.h │ │ │ │ ├── Bool.h │ │ │ │ ├── Bridging.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CallbackWrapper.h │ │ │ │ ├── Class.h │ │ │ │ ├── Convert.h │ │ │ │ ├── Dynamic.h │ │ │ │ ├── Error.h │ │ │ │ ├── Function.h │ │ │ │ ├── LongLivedObject.cpp │ │ │ │ ├── LongLivedObject.h │ │ │ │ ├── Number.h │ │ │ │ ├── Object.h │ │ │ │ ├── Promise.h │ │ │ │ ├── Value.h │ │ │ │ └── tests │ │ │ │ │ ├── BridgingTest.cpp │ │ │ │ │ ├── BridgingTest.h │ │ │ │ │ └── ClassTest.cpp │ │ │ ├── config │ │ │ │ ├── .clang-tidy │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ReactNativeConfig.cpp │ │ │ │ └── ReactNativeConfig.h │ │ │ ├── debug │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── React-debug.podspec │ │ │ │ ├── flags.h │ │ │ │ ├── react_native_assert.cpp │ │ │ │ ├── react_native_assert.h │ │ │ │ └── react_native_expect.h │ │ │ ├── nativemodule │ │ │ │ ├── .clang-tidy │ │ │ │ ├── core │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ReactCommon │ │ │ │ │ │ ├── CallbackWrapper.h │ │ │ │ │ │ ├── LongLivedObject.h │ │ │ │ │ │ ├── TurboCxxModule.cpp │ │ │ │ │ │ ├── TurboCxxModule.h │ │ │ │ │ │ ├── TurboModule.cpp │ │ │ │ │ │ ├── TurboModule.h │ │ │ │ │ │ ├── TurboModuleBinding.cpp │ │ │ │ │ │ ├── TurboModuleBinding.h │ │ │ │ │ │ ├── TurboModulePerfLogger.cpp │ │ │ │ │ │ ├── TurboModulePerfLogger.h │ │ │ │ │ │ ├── TurboModuleUtils.cpp │ │ │ │ │ │ └── TurboModuleUtils.h │ │ │ │ │ └── platform │ │ │ │ │ │ ├── android │ │ │ │ │ │ └── ReactCommon │ │ │ │ │ │ │ ├── JavaInteropTurboModule.cpp │ │ │ │ │ │ │ ├── JavaInteropTurboModule.h │ │ │ │ │ │ │ ├── JavaTurboModule.cpp │ │ │ │ │ │ │ └── JavaTurboModule.h │ │ │ │ │ │ └── ios │ │ │ │ │ │ ├── React-NativeModulesApple.podspec │ │ │ │ │ │ └── ReactCommon │ │ │ │ │ │ ├── RCTInteropTurboModule.h │ │ │ │ │ │ ├── RCTInteropTurboModule.mm │ │ │ │ │ │ ├── RCTTurboModule.h │ │ │ │ │ │ ├── RCTTurboModule.mm │ │ │ │ │ │ ├── RCTTurboModuleManager.h │ │ │ │ │ │ └── RCTTurboModuleManager.mm │ │ │ │ └── samples │ │ │ │ │ ├── ReactCommon-Samples.podspec │ │ │ │ │ ├── ReactCommon │ │ │ │ │ ├── NativeSampleTurboCxxModuleSpecJSI.cpp │ │ │ │ │ ├── NativeSampleTurboCxxModuleSpecJSI.h │ │ │ │ │ ├── SampleTurboCxxModule.cpp │ │ │ │ │ └── SampleTurboCxxModule.h │ │ │ │ │ └── platform │ │ │ │ │ ├── android │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── NativeSampleTurboModuleSpec.java │ │ │ │ │ ├── ReactCommon │ │ │ │ │ │ ├── SampleTurboModuleSpec.cpp │ │ │ │ │ │ └── SampleTurboModuleSpec.h │ │ │ │ │ ├── SampleLegacyModule.java │ │ │ │ │ └── SampleTurboModule.java │ │ │ │ │ └── ios │ │ │ │ │ └── ReactCommon │ │ │ │ │ ├── RCTNativeSampleTurboModuleSpec.h │ │ │ │ │ ├── RCTNativeSampleTurboModuleSpec.mm │ │ │ │ │ ├── RCTSampleLegacyModule.h │ │ │ │ │ ├── RCTSampleLegacyModule.mm │ │ │ │ │ ├── RCTSampleTurboCxxModule.h │ │ │ │ │ ├── RCTSampleTurboCxxModule.mm │ │ │ │ │ ├── RCTSampleTurboModule.h │ │ │ │ │ ├── RCTSampleTurboModule.mm │ │ │ │ │ ├── SampleTurboCxxModuleLegacyImpl.cpp │ │ │ │ │ └── SampleTurboCxxModuleLegacyImpl.h │ │ │ ├── renderer │ │ │ │ ├── .clang-tidy │ │ │ │ ├── animations │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LayoutAnimationCallbackWrapper.h │ │ │ │ │ ├── LayoutAnimationDriver.cpp │ │ │ │ │ ├── LayoutAnimationDriver.h │ │ │ │ │ ├── LayoutAnimationKeyFrameManager.cpp │ │ │ │ │ ├── LayoutAnimationKeyFrameManager.h │ │ │ │ │ ├── conversions.h │ │ │ │ │ ├── primitives.h │ │ │ │ │ ├── tests │ │ │ │ │ │ └── LayoutAnimationTest.cpp │ │ │ │ │ ├── utils.cpp │ │ │ │ │ └── utils.h │ │ │ │ ├── attributedstring │ │ │ │ │ ├── AttributedString.cpp │ │ │ │ │ ├── AttributedString.h │ │ │ │ │ ├── AttributedStringBox.cpp │ │ │ │ │ ├── AttributedStringBox.h │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ParagraphAttributes.cpp │ │ │ │ │ ├── ParagraphAttributes.h │ │ │ │ │ ├── TextAttributes.cpp │ │ │ │ │ ├── TextAttributes.h │ │ │ │ │ ├── conversions.h │ │ │ │ │ ├── primitives.h │ │ │ │ │ └── tests │ │ │ │ │ │ ├── AttributedStringBoxTest.cpp │ │ │ │ │ │ ├── AttributedStringTest.cpp │ │ │ │ │ │ ├── ParagraphAttributesTest.cpp │ │ │ │ │ │ └── TextAttributesTest.cpp │ │ │ │ ├── componentregistry │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ComponentDescriptorFactory.h │ │ │ │ │ ├── ComponentDescriptorProvider.h │ │ │ │ │ ├── ComponentDescriptorProviderRegistry.cpp │ │ │ │ │ ├── ComponentDescriptorProviderRegistry.h │ │ │ │ │ ├── ComponentDescriptorRegistry.cpp │ │ │ │ │ ├── ComponentDescriptorRegistry.h │ │ │ │ │ ├── componentNameByReactViewName.cpp │ │ │ │ │ ├── componentNameByReactViewName.h │ │ │ │ │ └── native │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── NativeComponentRegistryBinding.cpp │ │ │ │ │ │ └── NativeComponentRegistryBinding.h │ │ │ │ ├── components │ │ │ │ │ ├── image │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── ImageComponentDescriptor.h │ │ │ │ │ │ ├── ImageEventEmitter.cpp │ │ │ │ │ │ ├── ImageEventEmitter.h │ │ │ │ │ │ ├── ImageProps.cpp │ │ │ │ │ │ ├── ImageProps.h │ │ │ │ │ │ ├── ImageShadowNode.cpp │ │ │ │ │ │ ├── ImageShadowNode.h │ │ │ │ │ │ ├── ImageState.cpp │ │ │ │ │ │ ├── ImageState.h │ │ │ │ │ │ ├── conversions.h │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ └── ImageTest.cpp │ │ │ │ │ ├── inputaccessory │ │ │ │ │ │ ├── InputAccessoryComponentDescriptor.h │ │ │ │ │ │ ├── InputAccessoryShadowNode.cpp │ │ │ │ │ │ ├── InputAccessoryShadowNode.h │ │ │ │ │ │ └── InputAccessoryState.h │ │ │ │ │ ├── legacyviewmanagerinterop │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── LegacyViewManagerInteropComponentDescriptor.h │ │ │ │ │ │ ├── LegacyViewManagerInteropComponentDescriptor.mm │ │ │ │ │ │ ├── LegacyViewManagerInteropShadowNode.cpp │ │ │ │ │ │ ├── LegacyViewManagerInteropShadowNode.h │ │ │ │ │ │ ├── LegacyViewManagerInteropState.h │ │ │ │ │ │ ├── LegacyViewManagerInteropState.mm │ │ │ │ │ │ ├── LegacyViewManagerInteropViewEventEmitter.cpp │ │ │ │ │ │ ├── LegacyViewManagerInteropViewEventEmitter.h │ │ │ │ │ │ ├── LegacyViewManagerInteropViewProps.cpp │ │ │ │ │ │ ├── LegacyViewManagerInteropViewProps.h │ │ │ │ │ │ ├── RCTLegacyViewManagerInteropCoordinator.h │ │ │ │ │ │ ├── RCTLegacyViewManagerInteropCoordinator.mm │ │ │ │ │ │ └── UnstableLegacyViewManagerInteropComponentDescriptor.h │ │ │ │ │ ├── modal │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── ModalHostViewComponentDescriptor.h │ │ │ │ │ │ ├── ModalHostViewShadowNode.cpp │ │ │ │ │ │ ├── ModalHostViewShadowNode.h │ │ │ │ │ │ ├── ModalHostViewState.cpp │ │ │ │ │ │ └── ModalHostViewState.h │ │ │ │ │ ├── progressbar │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── android │ │ │ │ │ │ │ └── react │ │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ └── components │ │ │ │ │ │ │ └── progressbar │ │ │ │ │ │ │ ├── AndroidProgressBarComponentDescriptor.h │ │ │ │ │ │ │ ├── AndroidProgressBarMeasurementsManager.cpp │ │ │ │ │ │ │ ├── AndroidProgressBarMeasurementsManager.h │ │ │ │ │ │ │ ├── AndroidProgressBarShadowNode.cpp │ │ │ │ │ │ │ ├── AndroidProgressBarShadowNode.h │ │ │ │ │ │ │ └── conversions.h │ │ │ │ │ ├── root │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── RootComponentDescriptor.h │ │ │ │ │ │ ├── RootProps.cpp │ │ │ │ │ │ ├── RootProps.h │ │ │ │ │ │ ├── RootShadowNode.cpp │ │ │ │ │ │ ├── RootShadowNode.h │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ └── RootShadowNodeTest.cpp │ │ │ │ │ ├── safeareaview │ │ │ │ │ │ ├── SafeAreaViewComponentDescriptor.h │ │ │ │ │ │ ├── SafeAreaViewShadowNode.cpp │ │ │ │ │ │ ├── SafeAreaViewShadowNode.h │ │ │ │ │ │ ├── SafeAreaViewState.cpp │ │ │ │ │ │ └── SafeAreaViewState.h │ │ │ │ │ ├── scrollview │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── RCTComponentViewHelpers.h │ │ │ │ │ │ ├── ScrollViewComponentDescriptor.h │ │ │ │ │ │ ├── ScrollViewEventEmitter.cpp │ │ │ │ │ │ ├── ScrollViewEventEmitter.h │ │ │ │ │ │ ├── ScrollViewProps.cpp │ │ │ │ │ │ ├── ScrollViewProps.h │ │ │ │ │ │ ├── ScrollViewShadowNode.cpp │ │ │ │ │ │ ├── ScrollViewShadowNode.h │ │ │ │ │ │ ├── ScrollViewState.cpp │ │ │ │ │ │ ├── ScrollViewState.h │ │ │ │ │ │ ├── conversions.h │ │ │ │ │ │ ├── primitives.h │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ └── ScrollViewTest.cpp │ │ │ │ │ ├── switch │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── androidswitch │ │ │ │ │ │ │ └── react │ │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ └── components │ │ │ │ │ │ │ └── androidswitch │ │ │ │ │ │ │ ├── AndroidSwitchComponentDescriptor.h │ │ │ │ │ │ │ ├── AndroidSwitchMeasurementsManager.cpp │ │ │ │ │ │ │ ├── AndroidSwitchMeasurementsManager.h │ │ │ │ │ │ │ ├── AndroidSwitchShadowNode.cpp │ │ │ │ │ │ │ └── AndroidSwitchShadowNode.h │ │ │ │ │ ├── text │ │ │ │ │ │ ├── BaseTextProps.cpp │ │ │ │ │ │ ├── BaseTextProps.h │ │ │ │ │ │ ├── BaseTextShadowNode.cpp │ │ │ │ │ │ ├── BaseTextShadowNode.h │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── ParagraphComponentDescriptor.h │ │ │ │ │ │ ├── ParagraphEventEmitter.cpp │ │ │ │ │ │ ├── ParagraphEventEmitter.h │ │ │ │ │ │ ├── ParagraphLayoutManager.cpp │ │ │ │ │ │ ├── ParagraphLayoutManager.h │ │ │ │ │ │ ├── ParagraphProps.cpp │ │ │ │ │ │ ├── ParagraphProps.h │ │ │ │ │ │ ├── ParagraphShadowNode.cpp │ │ │ │ │ │ ├── ParagraphShadowNode.h │ │ │ │ │ │ ├── ParagraphState.cpp │ │ │ │ │ │ ├── ParagraphState.h │ │ │ │ │ │ ├── RawTextComponentDescriptor.h │ │ │ │ │ │ ├── RawTextProps.cpp │ │ │ │ │ │ ├── RawTextProps.h │ │ │ │ │ │ ├── RawTextShadowNode.cpp │ │ │ │ │ │ ├── RawTextShadowNode.h │ │ │ │ │ │ ├── TextComponentDescriptor.h │ │ │ │ │ │ ├── TextProps.cpp │ │ │ │ │ │ ├── TextProps.h │ │ │ │ │ │ ├── TextShadowNode.cpp │ │ │ │ │ │ ├── TextShadowNode.h │ │ │ │ │ │ ├── conversions.h │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ ├── ParagraphLocalDataTest.cpp │ │ │ │ │ │ │ └── TextTest.cpp │ │ │ │ │ ├── textinput │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── platform │ │ │ │ │ │ │ ├── android │ │ │ │ │ │ │ └── react │ │ │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ │ └── components │ │ │ │ │ │ │ │ └── androidtextinput │ │ │ │ │ │ │ │ ├── AndroidTextInputComponentDescriptor.h │ │ │ │ │ │ │ │ ├── AndroidTextInputEventEmitter.h │ │ │ │ │ │ │ │ ├── AndroidTextInputProps.cpp │ │ │ │ │ │ │ │ ├── AndroidTextInputProps.h │ │ │ │ │ │ │ │ ├── AndroidTextInputShadowNode.cpp │ │ │ │ │ │ │ │ ├── AndroidTextInputShadowNode.h │ │ │ │ │ │ │ │ ├── AndroidTextInputState.cpp │ │ │ │ │ │ │ │ └── AndroidTextInputState.h │ │ │ │ │ │ │ └── ios │ │ │ │ │ │ │ └── react │ │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ └── components │ │ │ │ │ │ │ └── iostextinput │ │ │ │ │ │ │ ├── TextInputComponentDescriptor.h │ │ │ │ │ │ │ ├── TextInputEventEmitter.cpp │ │ │ │ │ │ │ ├── TextInputEventEmitter.h │ │ │ │ │ │ │ ├── TextInputProps.cpp │ │ │ │ │ │ │ ├── TextInputProps.h │ │ │ │ │ │ │ ├── TextInputShadowNode.cpp │ │ │ │ │ │ │ ├── TextInputShadowNode.h │ │ │ │ │ │ │ ├── TextInputState.cpp │ │ │ │ │ │ │ ├── TextInputState.h │ │ │ │ │ │ │ ├── conversions.h │ │ │ │ │ │ │ ├── primitives.h │ │ │ │ │ │ │ └── propsConversions.h │ │ │ │ │ ├── unimplementedview │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── UnimplementedViewComponentDescriptor.cpp │ │ │ │ │ │ ├── UnimplementedViewComponentDescriptor.h │ │ │ │ │ │ ├── UnimplementedViewProps.cpp │ │ │ │ │ │ ├── UnimplementedViewProps.h │ │ │ │ │ │ ├── UnimplementedViewShadowNode.cpp │ │ │ │ │ │ └── UnimplementedViewShadowNode.h │ │ │ │ │ └── view │ │ │ │ │ │ ├── AccessibilityPrimitives.h │ │ │ │ │ │ ├── AccessibilityProps.cpp │ │ │ │ │ │ ├── AccessibilityProps.h │ │ │ │ │ │ ├── BaseTouch.cpp │ │ │ │ │ │ ├── BaseTouch.h │ │ │ │ │ │ ├── BaseViewEventEmitter.cpp │ │ │ │ │ │ ├── BaseViewEventEmitter.h │ │ │ │ │ │ ├── BaseViewProps.cpp │ │ │ │ │ │ ├── BaseViewProps.h │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── ConcreteViewShadowNode.h │ │ │ │ │ │ ├── PointerEvent.cpp │ │ │ │ │ │ ├── PointerEvent.h │ │ │ │ │ │ ├── Touch.h │ │ │ │ │ │ ├── TouchEvent.cpp │ │ │ │ │ │ ├── TouchEvent.h │ │ │ │ │ │ ├── TouchEventEmitter.cpp │ │ │ │ │ │ ├── TouchEventEmitter.h │ │ │ │ │ │ ├── ViewComponentDescriptor.h │ │ │ │ │ │ ├── ViewEventEmitter.h │ │ │ │ │ │ ├── ViewProps.h │ │ │ │ │ │ ├── ViewPropsInterpolation.h │ │ │ │ │ │ ├── ViewShadowNode.cpp │ │ │ │ │ │ ├── ViewShadowNode.h │ │ │ │ │ │ ├── YogaLayoutableShadowNode.cpp │ │ │ │ │ │ ├── YogaLayoutableShadowNode.h │ │ │ │ │ │ ├── YogaStylableProps.cpp │ │ │ │ │ │ ├── YogaStylableProps.h │ │ │ │ │ │ ├── accessibilityPropsConversions.h │ │ │ │ │ │ ├── conversions.h │ │ │ │ │ │ ├── platform │ │ │ │ │ │ ├── android │ │ │ │ │ │ │ └── react │ │ │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ │ └── components │ │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ │ ├── AccessibilityPropsMapBuffer.cpp │ │ │ │ │ │ │ │ ├── AccessibilityPropsMapBuffer.h │ │ │ │ │ │ │ │ ├── HostPlatformTouch.h │ │ │ │ │ │ │ │ ├── HostPlatformViewEventEmitter.h │ │ │ │ │ │ │ │ ├── HostPlatformViewProps.cpp │ │ │ │ │ │ │ │ ├── HostPlatformViewProps.h │ │ │ │ │ │ │ │ ├── HostPlatformViewTraitsInitializer.h │ │ │ │ │ │ │ │ ├── NativeDrawable.h │ │ │ │ │ │ │ │ ├── ViewPropsMapBuffer.cpp │ │ │ │ │ │ │ │ ├── ViewPropsMapBuffer.h │ │ │ │ │ │ │ │ ├── YogaStylablePropsMapBuffer.cpp │ │ │ │ │ │ │ │ └── YogaStylablePropsMapBuffer.h │ │ │ │ │ │ └── cxx │ │ │ │ │ │ │ └── react │ │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ └── components │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ ├── HostPlatformTouch.h │ │ │ │ │ │ │ ├── HostPlatformViewEventEmitter.h │ │ │ │ │ │ │ ├── HostPlatformViewProps.h │ │ │ │ │ │ │ └── HostPlatformViewTraitsInitializer.h │ │ │ │ │ │ ├── primitives.h │ │ │ │ │ │ ├── propsConversions.h │ │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── LayoutTest.cpp │ │ │ │ │ │ └── ViewTest.cpp │ │ │ │ │ │ └── viewPropConversions.h │ │ │ │ ├── core │ │ │ │ │ ├── BatchedEventQueue.cpp │ │ │ │ │ ├── BatchedEventQueue.h │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ComponentDescriptor.cpp │ │ │ │ │ ├── ComponentDescriptor.h │ │ │ │ │ ├── ConcreteComponentDescriptor.h │ │ │ │ │ ├── ConcreteShadowNode.h │ │ │ │ │ ├── ConcreteState.h │ │ │ │ │ ├── DynamicPropsUtilities.cpp │ │ │ │ │ ├── DynamicPropsUtilities.h │ │ │ │ │ ├── EventBeat.cpp │ │ │ │ │ ├── EventBeat.h │ │ │ │ │ ├── EventDispatcher.cpp │ │ │ │ │ ├── EventDispatcher.h │ │ │ │ │ ├── EventEmitter.cpp │ │ │ │ │ ├── EventEmitter.h │ │ │ │ │ ├── EventListener.cpp │ │ │ │ │ ├── EventListener.h │ │ │ │ │ ├── EventLogger.cpp │ │ │ │ │ ├── EventLogger.h │ │ │ │ │ ├── EventPayload.h │ │ │ │ │ ├── EventPayloadType.h │ │ │ │ │ ├── EventPipe.h │ │ │ │ │ ├── EventPriority.h │ │ │ │ │ ├── EventQueue.cpp │ │ │ │ │ ├── EventQueue.h │ │ │ │ │ ├── EventQueueProcessor.cpp │ │ │ │ │ ├── EventQueueProcessor.h │ │ │ │ │ ├── EventTarget.cpp │ │ │ │ │ ├── EventTarget.h │ │ │ │ │ ├── InstanceHandle.cpp │ │ │ │ │ ├── InstanceHandle.h │ │ │ │ │ ├── LayoutConstraints.cpp │ │ │ │ │ ├── LayoutConstraints.h │ │ │ │ │ ├── LayoutContext.h │ │ │ │ │ ├── LayoutMetrics.cpp │ │ │ │ │ ├── LayoutMetrics.h │ │ │ │ │ ├── LayoutPrimitives.h │ │ │ │ │ ├── LayoutableShadowNode.cpp │ │ │ │ │ ├── LayoutableShadowNode.h │ │ │ │ │ ├── Props.cpp │ │ │ │ │ ├── Props.h │ │ │ │ │ ├── PropsMacros.h │ │ │ │ │ ├── PropsParserContext.h │ │ │ │ │ ├── RawEvent.cpp │ │ │ │ │ ├── RawEvent.h │ │ │ │ │ ├── RawProps.cpp │ │ │ │ │ ├── RawProps.h │ │ │ │ │ ├── RawPropsKey.cpp │ │ │ │ │ ├── RawPropsKey.h │ │ │ │ │ ├── RawPropsKeyMap.cpp │ │ │ │ │ ├── RawPropsKeyMap.h │ │ │ │ │ ├── RawPropsParser.cpp │ │ │ │ │ ├── RawPropsParser.h │ │ │ │ │ ├── RawPropsPrimitives.h │ │ │ │ │ ├── RawValue.cpp │ │ │ │ │ ├── RawValue.h │ │ │ │ │ ├── ReactEventPriority.h │ │ │ │ │ ├── ReactPrimitives.h │ │ │ │ │ ├── Sealable.cpp │ │ │ │ │ ├── Sealable.h │ │ │ │ │ ├── ShadowNode.cpp │ │ │ │ │ ├── ShadowNode.h │ │ │ │ │ ├── ShadowNodeFamily.cpp │ │ │ │ │ ├── ShadowNodeFamily.h │ │ │ │ │ ├── ShadowNodeFragment.cpp │ │ │ │ │ ├── ShadowNodeFragment.h │ │ │ │ │ ├── ShadowNodeTraits.cpp │ │ │ │ │ ├── ShadowNodeTraits.h │ │ │ │ │ ├── State.cpp │ │ │ │ │ ├── State.h │ │ │ │ │ ├── StateData.h │ │ │ │ │ ├── StatePipe.h │ │ │ │ │ ├── StateUpdate.cpp │ │ │ │ │ ├── StateUpdate.h │ │ │ │ │ ├── TraitCast.h │ │ │ │ │ ├── UnbatchedEventQueue.cpp │ │ │ │ │ ├── UnbatchedEventQueue.h │ │ │ │ │ ├── ValueFactory.h │ │ │ │ │ ├── ValueFactoryEventPayload.cpp │ │ │ │ │ ├── ValueFactoryEventPayload.h │ │ │ │ │ ├── conversions.h │ │ │ │ │ ├── graphicsConversions.h │ │ │ │ │ ├── propsConversions.h │ │ │ │ │ └── tests │ │ │ │ │ │ ├── ComponentDescriptorTest.cpp │ │ │ │ │ │ ├── ConcreteShadowNodeTest.cpp │ │ │ │ │ │ ├── DynamicPropsUtilitiesTest.cpp │ │ │ │ │ │ ├── EventQueueProcessorTest.cpp │ │ │ │ │ │ ├── EventTargetTests.cpp │ │ │ │ │ │ ├── FindNodeAtPointTest.cpp │ │ │ │ │ │ ├── LayoutableShadowNodeTest.cpp │ │ │ │ │ │ ├── PrimitivesTest.cpp │ │ │ │ │ │ ├── RawPropsTest.cpp │ │ │ │ │ │ ├── ShadowNodeFamilyTest.cpp │ │ │ │ │ │ ├── ShadowNodeTest.cpp │ │ │ │ │ │ ├── TestComponent.h │ │ │ │ │ │ ├── benchmarks │ │ │ │ │ │ └── RawPropsBenchmark.cpp │ │ │ │ │ │ └── traitCastTest.cpp │ │ │ │ ├── debug │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── DebugStringConvertible.cpp │ │ │ │ │ ├── DebugStringConvertible.h │ │ │ │ │ ├── DebugStringConvertibleItem.cpp │ │ │ │ │ ├── DebugStringConvertibleItem.h │ │ │ │ │ ├── React-rendererdebug.podspec │ │ │ │ │ ├── SystraceSection.h │ │ │ │ │ ├── debugStringConvertibleUtils.h │ │ │ │ │ ├── flags.h │ │ │ │ │ └── tests │ │ │ │ │ │ └── DebugStringConvertibleTest.cpp │ │ │ │ ├── element │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ComponentBuilder.cpp │ │ │ │ │ ├── ComponentBuilder.h │ │ │ │ │ ├── Element.cpp │ │ │ │ │ ├── Element.h │ │ │ │ │ ├── ElementFragment.cpp │ │ │ │ │ ├── ElementFragment.h │ │ │ │ │ ├── testUtils.h │ │ │ │ │ └── tests │ │ │ │ │ │ └── ElementTest.cpp │ │ │ │ ├── graphics │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Color.cpp │ │ │ │ │ ├── Color.h │ │ │ │ │ ├── ColorComponents.h │ │ │ │ │ ├── Geometry.h │ │ │ │ │ ├── Point.h │ │ │ │ │ ├── React-graphics.podspec │ │ │ │ │ ├── Rect.h │ │ │ │ │ ├── RectangleCorners.h │ │ │ │ │ ├── RectangleEdges.h │ │ │ │ │ ├── Size.h │ │ │ │ │ ├── Transform.cpp │ │ │ │ │ ├── Transform.h │ │ │ │ │ ├── ValueUnit.h │ │ │ │ │ ├── Vector.h │ │ │ │ │ ├── conversions.h │ │ │ │ │ ├── platform │ │ │ │ │ │ ├── android │ │ │ │ │ │ │ └── react │ │ │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ │ └── graphics │ │ │ │ │ │ │ │ ├── Float.h │ │ │ │ │ │ │ │ ├── HostPlatformColor.h │ │ │ │ │ │ │ │ └── PlatformColorParser.h │ │ │ │ │ │ ├── cxx │ │ │ │ │ │ │ └── react │ │ │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ │ └── graphics │ │ │ │ │ │ │ │ ├── Float.h │ │ │ │ │ │ │ │ ├── HostPlatformColor.h │ │ │ │ │ │ │ │ └── PlatformColorParser.h │ │ │ │ │ │ └── ios │ │ │ │ │ │ │ └── react │ │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ └── graphics │ │ │ │ │ │ │ ├── Float.h │ │ │ │ │ │ │ ├── HostPlatformColor.h │ │ │ │ │ │ │ ├── PlatformColorParser.h │ │ │ │ │ │ │ ├── RCTPlatformColorUtils.h │ │ │ │ │ │ │ └── RCTPlatformColorUtils.mm │ │ │ │ │ ├── rounding.h │ │ │ │ │ └── tests │ │ │ │ │ │ ├── GraphicsTest.cpp │ │ │ │ │ │ └── TransformTest.cpp │ │ │ │ ├── imagemanager │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ImageManager.h │ │ │ │ │ ├── ImageRequest.cpp │ │ │ │ │ ├── ImageRequest.h │ │ │ │ │ ├── ImageResponse.cpp │ │ │ │ │ ├── ImageResponse.h │ │ │ │ │ ├── ImageResponseObserver.h │ │ │ │ │ ├── ImageResponseObserverCoordinator.cpp │ │ │ │ │ ├── ImageResponseObserverCoordinator.h │ │ │ │ │ ├── ImageTelemetry.cpp │ │ │ │ │ ├── ImageTelemetry.h │ │ │ │ │ ├── platform │ │ │ │ │ │ ├── cxx │ │ │ │ │ │ │ └── react │ │ │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ │ └── imagemanager │ │ │ │ │ │ │ │ └── ImageManager.cpp │ │ │ │ │ │ └── ios │ │ │ │ │ │ │ ├── React-ImageManager.podspec │ │ │ │ │ │ │ └── react │ │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ └── imagemanager │ │ │ │ │ │ │ ├── ImageManager.mm │ │ │ │ │ │ │ ├── RCTImageManager.h │ │ │ │ │ │ │ ├── RCTImageManager.mm │ │ │ │ │ │ │ ├── RCTImageManagerProtocol.h │ │ │ │ │ │ │ ├── RCTImagePrimitivesConversions.h │ │ │ │ │ │ │ ├── RCTSyncImageManager.h │ │ │ │ │ │ │ └── RCTSyncImageManager.mm │ │ │ │ │ ├── primitives.h │ │ │ │ │ └── tests │ │ │ │ │ │ └── ImageManagerTest.cpp │ │ │ │ ├── leakchecker │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LeakChecker.cpp │ │ │ │ │ ├── LeakChecker.h │ │ │ │ │ ├── WeakFamilyRegistry.cpp │ │ │ │ │ └── WeakFamilyRegistry.h │ │ │ │ ├── mapbuffer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── MapBuffer.cpp │ │ │ │ │ ├── MapBuffer.h │ │ │ │ │ ├── MapBufferBuilder.cpp │ │ │ │ │ ├── MapBufferBuilder.h │ │ │ │ │ └── tests │ │ │ │ │ │ └── MapBufferTest.cpp │ │ │ │ ├── mounting │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Differentiator.cpp │ │ │ │ │ ├── Differentiator.h │ │ │ │ │ ├── MountingCoordinator.cpp │ │ │ │ │ ├── MountingCoordinator.h │ │ │ │ │ ├── MountingOverrideDelegate.h │ │ │ │ │ ├── MountingTransaction.cpp │ │ │ │ │ ├── MountingTransaction.h │ │ │ │ │ ├── ShadowTree.cpp │ │ │ │ │ ├── ShadowTree.h │ │ │ │ │ ├── ShadowTreeDelegate.h │ │ │ │ │ ├── ShadowTreeRegistry.cpp │ │ │ │ │ ├── ShadowTreeRegistry.h │ │ │ │ │ ├── ShadowTreeRevision.cpp │ │ │ │ │ ├── ShadowTreeRevision.h │ │ │ │ │ ├── ShadowView.cpp │ │ │ │ │ ├── ShadowView.h │ │ │ │ │ ├── ShadowViewMutation.cpp │ │ │ │ │ ├── ShadowViewMutation.h │ │ │ │ │ ├── StubView.cpp │ │ │ │ │ ├── StubView.h │ │ │ │ │ ├── StubViewTree.cpp │ │ │ │ │ ├── StubViewTree.h │ │ │ │ │ ├── TelemetryController.cpp │ │ │ │ │ ├── TelemetryController.h │ │ │ │ │ ├── stubs.cpp │ │ │ │ │ ├── stubs.h │ │ │ │ │ └── tests │ │ │ │ │ │ ├── MountingTest.cpp │ │ │ │ │ │ ├── OrderIndexTest.cpp │ │ │ │ │ │ ├── ShadowTreeLifeCycleTest.cpp │ │ │ │ │ │ ├── StackingContextTest.cpp │ │ │ │ │ │ └── StateReconciliationTest.cpp │ │ │ │ ├── observers │ │ │ │ │ ├── intersection │ │ │ │ │ │ ├── IntersectionObserver.cpp │ │ │ │ │ │ ├── IntersectionObserver.h │ │ │ │ │ │ ├── IntersectionObserverManager.cpp │ │ │ │ │ │ ├── IntersectionObserverManager.h │ │ │ │ │ │ ├── IntersectionObserverState.cpp │ │ │ │ │ │ └── IntersectionObserverState.h │ │ │ │ │ └── mutation │ │ │ │ │ │ ├── MutationObserver.cpp │ │ │ │ │ │ ├── MutationObserver.h │ │ │ │ │ │ ├── MutationObserverManager.cpp │ │ │ │ │ │ └── MutationObserverManager.h │ │ │ │ ├── runtimescheduler │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ErrorUtils.h │ │ │ │ │ ├── React-runtimescheduler.podspec │ │ │ │ │ ├── RuntimeScheduler.cpp │ │ │ │ │ ├── RuntimeScheduler.h │ │ │ │ │ ├── RuntimeSchedulerBinding.cpp │ │ │ │ │ ├── RuntimeSchedulerBinding.h │ │ │ │ │ ├── RuntimeSchedulerCallInvoker.cpp │ │ │ │ │ ├── RuntimeSchedulerCallInvoker.h │ │ │ │ │ ├── RuntimeSchedulerClock.h │ │ │ │ │ ├── RuntimeScheduler_Legacy.cpp │ │ │ │ │ ├── RuntimeScheduler_Legacy.h │ │ │ │ │ ├── RuntimeScheduler_Modern.cpp │ │ │ │ │ ├── RuntimeScheduler_Modern.h │ │ │ │ │ ├── SchedulerPriorityUtils.h │ │ │ │ │ ├── Task.cpp │ │ │ │ │ ├── Task.h │ │ │ │ │ ├── primitives.h │ │ │ │ │ └── tests │ │ │ │ │ │ ├── RuntimeSchedulerTest.cpp │ │ │ │ │ │ ├── SchedulerPriorityTest.cpp │ │ │ │ │ │ ├── StubClock.h │ │ │ │ │ │ ├── StubErrorUtils.h │ │ │ │ │ │ └── StubQueue.h │ │ │ │ ├── scheduler │ │ │ │ │ ├── AsynchronousEventBeat.cpp │ │ │ │ │ ├── AsynchronousEventBeat.h │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── InspectorData.h │ │ │ │ │ ├── Scheduler.cpp │ │ │ │ │ ├── Scheduler.h │ │ │ │ │ ├── SchedulerDelegate.h │ │ │ │ │ ├── SchedulerToolbox.h │ │ │ │ │ ├── SurfaceHandler.cpp │ │ │ │ │ ├── SurfaceHandler.h │ │ │ │ │ ├── SurfaceManager.cpp │ │ │ │ │ ├── SurfaceManager.h │ │ │ │ │ ├── SynchronousEventBeat.cpp │ │ │ │ │ └── SynchronousEventBeat.h │ │ │ │ ├── telemetry │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── SurfaceTelemetry.cpp │ │ │ │ │ ├── SurfaceTelemetry.h │ │ │ │ │ ├── TransactionTelemetry.cpp │ │ │ │ │ ├── TransactionTelemetry.h │ │ │ │ │ └── tests │ │ │ │ │ │ └── TransactionTelemetryTest.cpp │ │ │ │ ├── textlayoutmanager │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── TextLayoutContext.h │ │ │ │ │ ├── TextMeasureCache.cpp │ │ │ │ │ ├── TextMeasureCache.h │ │ │ │ │ ├── platform │ │ │ │ │ │ ├── android │ │ │ │ │ │ │ └── react │ │ │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ │ └── textlayoutmanager │ │ │ │ │ │ │ │ ├── TextLayoutManager.cpp │ │ │ │ │ │ │ │ └── TextLayoutManager.h │ │ │ │ │ │ ├── cxx │ │ │ │ │ │ │ ├── TextLayoutManager.cpp │ │ │ │ │ │ │ └── TextLayoutManager.h │ │ │ │ │ │ └── ios │ │ │ │ │ │ │ └── react │ │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ └── textlayoutmanager │ │ │ │ │ │ │ ├── RCTAttributedTextUtils.h │ │ │ │ │ │ │ ├── RCTAttributedTextUtils.mm │ │ │ │ │ │ │ ├── RCTFontProperties.h │ │ │ │ │ │ │ ├── RCTFontUtils.h │ │ │ │ │ │ │ ├── RCTFontUtils.mm │ │ │ │ │ │ │ ├── RCTTextLayoutManager.h │ │ │ │ │ │ │ ├── RCTTextLayoutManager.mm │ │ │ │ │ │ │ ├── RCTTextPrimitivesConversions.h │ │ │ │ │ │ │ ├── TextLayoutManager.h │ │ │ │ │ │ │ └── TextLayoutManager.mm │ │ │ │ │ └── tests │ │ │ │ │ │ └── TextLayoutManagerTest.cpp │ │ │ │ ├── timeline │ │ │ │ │ ├── Timeline.cpp │ │ │ │ │ ├── Timeline.h │ │ │ │ │ ├── TimelineController.cpp │ │ │ │ │ ├── TimelineController.h │ │ │ │ │ ├── TimelineFrame.cpp │ │ │ │ │ ├── TimelineFrame.h │ │ │ │ │ ├── TimelineHandler.cpp │ │ │ │ │ ├── TimelineHandler.h │ │ │ │ │ ├── TimelineSnapshot.cpp │ │ │ │ │ └── TimelineSnapshot.h │ │ │ │ └── uimanager │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LayoutAnimationStatusDelegate.h │ │ │ │ │ ├── PointerEventsProcessor.cpp │ │ │ │ │ ├── PointerEventsProcessor.h │ │ │ │ │ ├── PointerHoverTracker.cpp │ │ │ │ │ ├── PointerHoverTracker.h │ │ │ │ │ ├── SurfaceRegistryBinding.cpp │ │ │ │ │ ├── SurfaceRegistryBinding.h │ │ │ │ │ ├── UIManager.cpp │ │ │ │ │ ├── UIManager.h │ │ │ │ │ ├── UIManagerAnimationDelegate.h │ │ │ │ │ ├── UIManagerBinding.cpp │ │ │ │ │ ├── UIManagerBinding.h │ │ │ │ │ ├── UIManagerCommitHook.h │ │ │ │ │ ├── UIManagerDelegate.h │ │ │ │ │ ├── UIManagerMountHook.h │ │ │ │ │ ├── bindingUtils.cpp │ │ │ │ │ ├── bindingUtils.h │ │ │ │ │ ├── primitives.h │ │ │ │ │ └── tests │ │ │ │ │ ├── FabricUIManagerTest.cpp │ │ │ │ │ └── PointerEventsProcessorTest.cpp │ │ │ ├── runtime │ │ │ │ ├── .clang-tidy │ │ │ │ ├── BindingsInstaller.h │ │ │ │ ├── BridgelessJSCallInvoker.cpp │ │ │ │ ├── BridgelessJSCallInvoker.h │ │ │ │ ├── BridgelessNativeMethodCallInvoker.cpp │ │ │ │ ├── BridgelessNativeMethodCallInvoker.h │ │ │ │ ├── BufferedRuntimeExecutor.cpp │ │ │ │ ├── BufferedRuntimeExecutor.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── JSRuntimeFactory.cpp │ │ │ │ ├── JSRuntimeFactory.h │ │ │ │ ├── PlatformTimerRegistry.h │ │ │ │ ├── README.md │ │ │ │ ├── React-RuntimeCore.podspec │ │ │ │ ├── React-RuntimeHermes.podspec │ │ │ │ ├── ReactInstance.cpp │ │ │ │ ├── ReactInstance.h │ │ │ │ ├── TimerManager.cpp │ │ │ │ ├── TimerManager.h │ │ │ │ ├── hermes │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── HermesInstance.cpp │ │ │ │ │ └── HermesInstance.h │ │ │ │ ├── iostests │ │ │ │ │ └── RCTHostTests.mm │ │ │ │ ├── nativeviewconfig │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LegacyUIManagerConstantsProviderBinding.cpp │ │ │ │ │ └── LegacyUIManagerConstantsProviderBinding.h │ │ │ │ ├── platform │ │ │ │ │ └── ios │ │ │ │ │ │ ├── React-RuntimeApple.podspec │ │ │ │ │ │ └── ReactCommon │ │ │ │ │ │ ├── ObjCTimerRegistry.h │ │ │ │ │ │ ├── ObjCTimerRegistry.mm │ │ │ │ │ │ ├── RCTContextContainerHandling.h │ │ │ │ │ │ ├── RCTHermesInstance.h │ │ │ │ │ │ ├── RCTHermesInstance.mm │ │ │ │ │ │ ├── RCTHost+Internal.h │ │ │ │ │ │ ├── RCTHost.h │ │ │ │ │ │ ├── RCTHost.mm │ │ │ │ │ │ ├── RCTInstance.h │ │ │ │ │ │ ├── RCTInstance.mm │ │ │ │ │ │ ├── RCTJSThreadManager.h │ │ │ │ │ │ ├── RCTJSThreadManager.mm │ │ │ │ │ │ ├── RCTJscInstance.h │ │ │ │ │ │ ├── RCTJscInstance.mm │ │ │ │ │ │ ├── RCTLegacyUIManagerConstantsProvider.h │ │ │ │ │ │ ├── RCTLegacyUIManagerConstantsProvider.mm │ │ │ │ │ │ ├── RCTPerformanceLoggerUtils.h │ │ │ │ │ │ └── RCTPerformanceLoggerUtils.mm │ │ │ │ └── tests │ │ │ │ │ └── cxx │ │ │ │ │ └── ReactInstanceTest.cpp │ │ │ ├── test_utils │ │ │ │ ├── Entropy.h │ │ │ │ ├── MockClock.h │ │ │ │ ├── MockSurfaceHandler.h │ │ │ │ ├── ios │ │ │ │ │ ├── Memory │ │ │ │ │ │ ├── RCTMemoryUtils.h │ │ │ │ │ │ └── RCTMemoryUtils.m │ │ │ │ │ ├── RCTSwizzleHelpers.h │ │ │ │ │ ├── RCTSwizzleHelpers.m │ │ │ │ │ └── Shims │ │ │ │ │ │ ├── ShimRCTInstance.h │ │ │ │ │ │ └── ShimRCTInstance.mm │ │ │ │ └── shadowTreeGeneration.h │ │ │ └── utils │ │ │ │ ├── .clang-tidy │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ContextContainer.h │ │ │ │ ├── CoreFeatures.cpp │ │ │ │ ├── CoreFeatures.h │ │ │ │ ├── FloatComparison.h │ │ │ │ ├── ManagedObjectWrapper.h │ │ │ │ ├── ManagedObjectWrapper.mm │ │ │ │ ├── React-utils.podspec │ │ │ │ ├── RunLoopObserver.cpp │ │ │ │ ├── RunLoopObserver.h │ │ │ │ ├── SharedFunction.h │ │ │ │ ├── SimpleThreadSafeCache.h │ │ │ │ ├── Telemetry.h │ │ │ │ ├── fnv1a.h │ │ │ │ ├── hash_combine.h │ │ │ │ └── tests │ │ │ │ ├── fnv1aTests.cpp │ │ │ │ └── hash_combineTests.cpp │ │ ├── reactperflogger │ │ │ ├── .clang-tidy │ │ │ ├── CMakeLists.txt │ │ │ ├── React-perflogger.podspec │ │ │ └── reactperflogger │ │ │ │ ├── BridgeNativeModulePerfLogger.cpp │ │ │ │ ├── BridgeNativeModulePerfLogger.h │ │ │ │ └── NativeModulePerfLogger.h │ │ ├── runtimeexecutor │ │ │ ├── .clang-tidy │ │ │ ├── CMakeLists.txt │ │ │ ├── React-runtimeexecutor.podspec │ │ │ └── ReactCommon │ │ │ │ └── RuntimeExecutor.h │ │ └── yoga │ │ │ ├── .clang-tidy │ │ │ ├── CMakeLists.txt │ │ │ ├── Yoga.podspec │ │ │ ├── cmake │ │ │ ├── project-defaults.cmake │ │ │ └── yoga-config.cmake.in │ │ │ └── yoga │ │ │ ├── CMakeLists.txt │ │ │ ├── YGConfig.cpp │ │ │ ├── YGConfig.h │ │ │ ├── YGEnums.cpp │ │ │ ├── YGEnums.h │ │ │ ├── YGMacros.h │ │ │ ├── YGNode.cpp │ │ │ ├── YGNode.h │ │ │ ├── YGNodeLayout.cpp │ │ │ ├── YGNodeLayout.h │ │ │ ├── YGNodeStyle.cpp │ │ │ ├── YGNodeStyle.h │ │ │ ├── YGPixelGrid.cpp │ │ │ ├── YGPixelGrid.h │ │ │ ├── YGValue.cpp │ │ │ ├── YGValue.h │ │ │ ├── Yoga.h │ │ │ ├── algorithm │ │ │ ├── AbsoluteLayout.cpp │ │ │ ├── AbsoluteLayout.h │ │ │ ├── Align.h │ │ │ ├── Baseline.cpp │ │ │ ├── Baseline.h │ │ │ ├── BoundAxis.h │ │ │ ├── Cache.cpp │ │ │ ├── Cache.h │ │ │ ├── CalculateLayout.cpp │ │ │ ├── CalculateLayout.h │ │ │ ├── FlexDirection.h │ │ │ ├── FlexLine.cpp │ │ │ ├── FlexLine.h │ │ │ ├── PixelGrid.cpp │ │ │ ├── PixelGrid.h │ │ │ ├── SizingMode.h │ │ │ └── TrailingPosition.h │ │ │ ├── config │ │ │ ├── Config.cpp │ │ │ └── Config.h │ │ │ ├── debug │ │ │ ├── AssertFatal.cpp │ │ │ ├── AssertFatal.h │ │ │ ├── Log.cpp │ │ │ ├── Log.h │ │ │ ├── NodeToString.cpp │ │ │ └── NodeToString.h │ │ │ ├── enums │ │ │ ├── Align.h │ │ │ ├── Dimension.h │ │ │ ├── Direction.h │ │ │ ├── Display.h │ │ │ ├── Edge.h │ │ │ ├── Errata.h │ │ │ ├── ExperimentalFeature.h │ │ │ ├── FlexDirection.h │ │ │ ├── Gutter.h │ │ │ ├── Justify.h │ │ │ ├── LogLevel.h │ │ │ ├── MeasureMode.h │ │ │ ├── NodeType.h │ │ │ ├── Overflow.h │ │ │ ├── PositionType.h │ │ │ ├── PrintOptions.h │ │ │ ├── Unit.h │ │ │ ├── Wrap.h │ │ │ └── YogaEnums.h │ │ │ ├── event │ │ │ ├── event.cpp │ │ │ └── event.h │ │ │ ├── module.modulemap │ │ │ ├── node │ │ │ ├── CachedMeasurement.h │ │ │ ├── LayoutResults.cpp │ │ │ ├── LayoutResults.h │ │ │ ├── Node.cpp │ │ │ └── Node.h │ │ │ ├── numeric │ │ │ ├── Comparison.h │ │ │ └── FloatOptional.h │ │ │ └── style │ │ │ ├── CompactValue.h │ │ │ ├── Style.h │ │ │ └── StyleLength.h │ ├── android │ │ └── README.md │ ├── build.gradle.kts │ ├── cli.js │ ├── flow │ │ ├── HermesInternalType.js │ │ ├── Position.js │ │ ├── Stringish.js │ │ ├── console.js │ │ ├── global.js │ │ ├── jest.js │ │ └── react.js │ ├── gradle.properties │ ├── gradle │ │ └── libs.versions.toml │ ├── index.js │ ├── interface.js │ ├── jest-preset.js │ ├── jest │ │ ├── MockNativeMethods.js │ │ ├── ReactNativeInternalFeatureFlagsMock.js │ │ ├── __tests__ │ │ │ └── setup-test.js │ │ ├── assetFileTransformer.js │ │ ├── local-setup.js │ │ ├── mockComponent.js │ │ ├── mockModal.js │ │ ├── mockNativeComponent.js │ │ ├── mockScrollView.js │ │ ├── react-native-env.js │ │ ├── renderer.js │ │ └── setup.js │ ├── local-cli │ │ └── cli.js │ ├── metro.config.js │ ├── package.json │ ├── react-native.config.js │ ├── rn-get-polyfills.js │ ├── scripts │ │ ├── .npmignore │ │ ├── cocoapods │ │ │ ├── __tests__ │ │ │ │ ├── codegen-test.rb │ │ │ │ ├── codegen_utils-test.rb │ │ │ │ ├── fabric-test.rb │ │ │ │ ├── jsengine-test.rb │ │ │ │ ├── local_podspec_patch-test.rb │ │ │ │ ├── new_architecture-test.rb │ │ │ │ ├── test_utils │ │ │ │ │ ├── CodegenScriptPhaseExtractorMock.rb │ │ │ │ │ ├── CodegenUtilsMock.rb │ │ │ │ │ ├── DirMock.rb │ │ │ │ │ ├── EnvironmentMock.rb │ │ │ │ │ ├── FileMock.rb │ │ │ │ │ ├── FileUtilsMock.rb │ │ │ │ │ ├── FinderMock.rb │ │ │ │ │ ├── InstallerMock.rb │ │ │ │ │ ├── LocalPodspecPatchMock.rb │ │ │ │ │ ├── Open3Mock.rb │ │ │ │ │ ├── PathnameMock.rb │ │ │ │ │ ├── PodMock.rb │ │ │ │ │ ├── SpecMock.rb │ │ │ │ │ ├── SysctlCheckerMock.rb │ │ │ │ │ ├── TargetDefinitionMock.rb │ │ │ │ │ ├── XcodebuildMock.rb │ │ │ │ │ ├── XcodeprojMock.rb │ │ │ │ │ ├── podSpy.rb │ │ │ │ │ └── systemUtils.rb │ │ │ │ └── utils-test.rb │ │ │ ├── codegen.rb │ │ │ ├── codegen_script_phase_extractor.rb │ │ │ ├── codegen_utils.rb │ │ │ ├── fabric.rb │ │ │ ├── helpers.rb │ │ │ ├── jsengine.rb │ │ │ ├── local_podspec_patch.rb │ │ │ ├── new_architecture.rb │ │ │ ├── runtime.rb │ │ │ └── utils.rb │ │ ├── codegen │ │ │ ├── __test_fixtures__ │ │ │ │ └── fixtures.js │ │ │ ├── __tests__ │ │ │ │ ├── generate-artifacts-executor-test.js │ │ │ │ └── generate-specs-cli-executor-test.js │ │ │ ├── codegen-utils.js │ │ │ ├── generate-artifacts-executor.js │ │ │ └── generate-specs-cli-executor.js │ │ ├── compose-source-maps.js │ │ ├── find-node-for-xcode.sh │ │ ├── generate-codegen-artifacts.js │ │ ├── generate-provider-cli.js │ │ ├── generate-specs-cli.js │ │ ├── hermes │ │ │ ├── __tests__ │ │ │ │ └── hermes-utils-test.js │ │ │ ├── bump-hermes-version.js │ │ │ ├── create-tarball.js │ │ │ ├── get-tarball-name.js │ │ │ ├── hermes-utils.js │ │ │ └── prepare-hermes-for-build.js │ │ ├── ios-configure-glog.sh │ │ ├── native_modules.rb │ │ ├── node-binary.sh │ │ ├── packager-reporter.js │ │ ├── packager.sh │ │ ├── react-native-xcode.sh │ │ ├── react_native_pods.rb │ │ ├── react_native_pods_utils │ │ │ ├── __tests__ │ │ │ │ ├── script_phases-test.rb │ │ │ │ └── script_phases.snap.rb │ │ │ ├── script_phases.rb │ │ │ └── script_phases.sh │ │ ├── run_ruby_tests.sh │ │ └── xcode │ │ │ ├── ccache-clang++.sh │ │ │ ├── ccache-clang.sh │ │ │ ├── ccache.conf │ │ │ └── with-environment.sh │ ├── sdks │ │ └── hermes-engine │ │ │ ├── hermes-engine.podspec │ │ │ ├── hermes-utils.rb │ │ │ └── utils │ │ │ ├── build-apple-framework.sh │ │ │ ├── build-hermes-xcode.sh │ │ │ ├── build-hermesc-xcode.sh │ │ │ ├── build-ios-framework.sh │ │ │ ├── build-mac-framework.sh │ │ │ ├── copy-hermes-xcode.sh │ │ │ ├── create-dummy-hermes-xcframework.sh │ │ │ └── replace_hermes_version.js │ ├── settings.gradle.kts │ ├── template.config.js │ ├── template │ │ ├── App.tsx │ │ ├── Gemfile │ │ ├── README.md │ │ ├── __tests__ │ │ │ └── App.test.tsx │ │ ├── _bundle │ │ │ └── config │ │ ├── _eslintrc.js │ │ ├── _gitignore │ │ ├── _prettierrc.js │ │ ├── _watchmanconfig │ │ ├── android │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ ├── debug.keystore │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── helloworld │ │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ │ └── MainApplication.kt │ │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── rn_edit_text_material.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ ├── build.gradle │ │ │ ├── gradle-wrapper.jar │ │ │ ├── gradle-wrapper.properties │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ │ ├── app.json │ │ ├── babel.config.js │ │ ├── index.js │ │ ├── ios │ │ │ ├── HelloWorld.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── HelloWorld.xcscheme │ │ │ ├── HelloWorld │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.mm │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Info.plist │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── main.m │ │ │ ├── HelloWorldTests │ │ │ │ ├── HelloWorldTests.m │ │ │ │ └── Info.plist │ │ │ ├── Podfile │ │ │ └── _xcode.env │ │ ├── jest.config.js │ │ ├── metro.config.js │ │ ├── package.json │ │ └── tsconfig.json │ ├── third-party-podspecs │ │ ├── DoubleConversion.podspec │ │ ├── RCT-Folly.podspec │ │ ├── boost.podspec │ │ ├── fmt.podspec │ │ └── glog.podspec │ └── types │ │ ├── .npmignore │ │ ├── __typetests__ │ │ ├── animated.tsx │ │ ├── fabric-component-sample.ts │ │ ├── globals.tsx │ │ ├── index.tsx │ │ ├── init-example.tsx │ │ ├── legacy-properties.tsx │ │ ├── stylesheet-create.tsx │ │ ├── stylesheet-flatten.tsx │ │ └── turbo-module-sample.ts │ │ ├── experimental.d.ts │ │ ├── index.d.ts │ │ ├── modules │ │ ├── BatchedBridge.d.ts │ │ ├── Codegen.d.ts │ │ ├── Devtools.d.ts │ │ ├── LaunchScreen.d.ts │ │ └── globals.d.ts │ │ ├── private │ │ ├── TimerMixin.d.ts │ │ └── Utilities.d.ts │ │ ├── public │ │ ├── DeprecatedPropertiesAlias.d.ts │ │ ├── Insets.d.ts │ │ ├── ReactNativeRenderer.d.ts │ │ └── ReactNativeTypes.d.ts │ │ ├── tsconfig.json │ │ └── tslint.json ├── rn-tester-e2e │ ├── README.md │ ├── apps │ │ └── README.md │ ├── babel.config.js │ ├── e2e-config.js │ ├── jest.config.js │ ├── jest.setup.js │ ├── package.json │ └── tests │ │ ├── helpers │ │ └── utils.js │ │ ├── screens │ │ ├── apis.screen.js │ │ ├── bookmarks.screen.js │ │ ├── components.screen.js │ │ └── components │ │ │ ├── activityIndicatorComponent.screen.js │ │ │ ├── buttonComponent.screen.js │ │ │ ├── flatListComponent.screen.js │ │ │ ├── jsResponderHandlerComponent.screen.js │ │ │ ├── keyboardAvoidingViewComponent.screen.js │ │ │ ├── modalComponent.screen.js │ │ │ ├── newAppComponent.screen.js │ │ │ ├── pressableComponent.screen.js │ │ │ ├── refreshControlComponent.screen.js │ │ │ └── scrollViewSimpleExampleComponent.screen.js │ │ └── specs │ │ └── components │ │ ├── activityIndicatorComponentScreen.test.js │ │ ├── buttonComponentScreen.test.js │ │ ├── flatListComponentScreen.test.js │ │ ├── jsResponderHandlerComponentScreen.test.js │ │ ├── keyboardAvoidingViewComponentScreen.test.js │ │ ├── modalComponentScreen.test.js │ │ ├── newAppComponentScreen.test.js │ │ ├── pressableComponentScreen.test.js │ │ ├── refreshControlComponentScreen.test.js │ │ └── scrollViewSimpleExampleComponentScreen.test.js ├── rn-tester │ ├── .babelrc │ ├── .eslintrc │ ├── .xcode.env │ ├── Gemfile │ ├── IntegrationTests │ │ ├── AccessibilityManagerTest.js │ │ ├── AppEventsTest.js │ │ ├── GlobalEvalWithSourceUrlTest.js │ │ ├── ImageCachePolicyTest.js │ │ ├── ImageSnapshotTest.js │ │ ├── IntegrationTestHarnessTest.js │ │ ├── IntegrationTestsApp.js │ │ ├── LayoutEventsTest.js │ │ ├── LoggingTestModule.js │ │ ├── PromiseTest.js │ │ ├── SimpleSnapshotTest.js │ │ ├── SyncMethodTest.js │ │ ├── TimersTest.js │ │ ├── WebSocketTest.js │ │ ├── blue_square.png │ │ ├── launchWebSocketServer.sh │ │ ├── red_square.png │ │ └── websocket_integration_test_server.js │ ├── NativeComponentExample │ │ ├── MyNativeView.podspec │ │ ├── ios │ │ │ ├── RNTLegacyView.h │ │ │ ├── RNTLegacyView.mm │ │ │ ├── RNTMyLegacyNativeViewManager.mm │ │ │ ├── RNTMyNativeViewCommon.mm │ │ │ ├── RNTMyNativeViewComponentView.h │ │ │ ├── RNTMyNativeViewComponentView.mm │ │ │ ├── RNTMyNativeViewManager.mm │ │ │ └── UIView+ColorOverlays.h │ │ └── js │ │ │ ├── MyLegacyViewNativeComponent.js │ │ │ ├── MyNativeView.js │ │ │ └── MyNativeViewNativeComponent.js │ ├── NativeCxxModuleExample │ │ ├── CMakeLists.txt │ │ ├── NativeCxxModuleExample.cpp │ │ ├── NativeCxxModuleExample.h │ │ ├── NativeCxxModuleExample.js │ │ └── NativeCxxModuleExample.podspec │ ├── NativeModuleExample │ │ ├── NativeScreenshotManager.js │ │ ├── Screenshot.h │ │ ├── Screenshot.mm │ │ └── ScreenshotManager.podspec │ ├── Podfile │ ├── Podfile.lock │ ├── RCTTest │ │ ├── FBSnapshotTestCase │ │ │ ├── FBSnapshotTestCase.h │ │ │ ├── FBSnapshotTestCase.m │ │ │ ├── FBSnapshotTestController.h │ │ │ ├── FBSnapshotTestController.m │ │ │ ├── UIImage+Compare.h │ │ │ ├── UIImage+Compare.m │ │ │ ├── UIImage+Diff.h │ │ │ └── UIImage+Diff.m │ │ ├── RCTSnapshotManager.h │ │ ├── RCTSnapshotManager.m │ │ ├── RCTSnapshotNativeComponent.js │ │ ├── RCTTestModule.h │ │ ├── RCTTestModule.mm │ │ ├── RCTTestPlugins.h │ │ ├── RCTTestPlugins.mm │ │ ├── RCTTestRunner.h │ │ ├── RCTTestRunner.m │ │ └── React-RCTTest.podspec │ ├── README.md │ ├── RNTester │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-60@2x.png │ │ │ │ ├── Icon-60@3x.png │ │ │ │ ├── Icon-76@2x.png │ │ │ │ ├── Icon-83.5@2x.png │ │ │ │ ├── Icon-Small-40@2x.png │ │ │ │ ├── Icon-Small-40@3x.png │ │ │ │ ├── Icon-Small@2x.png │ │ │ │ ├── Icon-Small@3x.png │ │ │ │ └── iTunesArtwork@1x.png │ │ │ ├── Contents.json │ │ │ ├── NavBarButtonPlus.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── NavBarButtonPlus@3x.png │ │ │ ├── customColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── story-background.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── story-background@2x.png │ │ │ ├── tabnav_list.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tabnav_list@3x.png │ │ │ ├── tabnav_notification.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tabnav_notification@3x.png │ │ │ └── tabnav_settings.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tabnav_settings@3x.png │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── NativeExampleViews │ │ │ ├── FlexibleSizeExampleView.h │ │ │ ├── FlexibleSizeExampleView.mm │ │ │ ├── UpdatePropertiesExampleView.h │ │ │ └── UpdatePropertiesExampleView.mm │ │ ├── RNTester.xctestplan │ │ ├── RNTesterBundle │ │ │ ├── ImageInBundle.png │ │ │ ├── Info.plist │ │ │ └── OtherImages.xcassets │ │ │ │ ├── Contents.json │ │ │ │ └── ImageInAssetCatalog.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── react-logo.png │ │ ├── SwiftTest.swift │ │ ├── legacy_image@2x.png │ │ └── main.m │ ├── RNTesterIntegrationTests │ │ ├── Info.plist │ │ ├── RCTLoggingTests.m │ │ ├── RCTUIManagerScenarioTests.m │ │ ├── RNTesterIntegrationTests.m │ │ ├── RNTesterTestModule.m │ │ ├── ReferenceImages │ │ │ └── IntegrationTests-IntegrationTestsApp │ │ │ │ ├── testImageSnapshotTest_1@2x.png │ │ │ │ ├── testImageSnapshotTest_1@3x.png │ │ │ │ ├── testSimpleSnapshotTest_1@2x.png │ │ │ │ └── testSimpleSnapshotTest_1@3x.png │ │ ├── blue_square.png │ │ └── red_square.png │ ├── RNTesterPods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── RNTester.xcscheme │ │ │ ├── RNTesterIntegrationTests.xcscheme │ │ │ └── RNTesterUnitTests.xcscheme │ ├── RNTesterPods.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── RNTesterUnitTests │ │ ├── Info.plist │ │ ├── RCTAllocationTests.m │ │ ├── RCTAnimationUtilsTests.m │ │ ├── RCTBlobManagerTests.m │ │ ├── RCTBundleURLProviderTests.m │ │ ├── RCTComponentPropsTests.m │ │ ├── RCTConvert_NSURLTests.m │ │ ├── RCTConvert_UIColorTests.m │ │ ├── RCTConvert_YGValueTests.m │ │ ├── RCTDevMenuTests.m │ │ ├── RCTEventDispatcherTests.m │ │ ├── RCTEventEmitterTests.m │ │ ├── RCTFontTests.m │ │ ├── RCTFormatErrorTests.m │ │ ├── RCTGzipTests.m │ │ ├── RCTImageLoaderHelpers.h │ │ ├── RCTImageLoaderHelpers.m │ │ ├── RCTImageLoaderTests.m │ │ ├── RCTImageUtilTests.m │ │ ├── RCTJSONTests.m │ │ ├── RCTMethodArgumentTests.m │ │ ├── RCTModuleInitNotificationRaceTests.m │ │ ├── RCTModuleInitTests.m │ │ ├── RCTModuleMethodTests.mm │ │ ├── RCTMultipartStreamReaderTests.m │ │ ├── RCTNativeAnimatedNodesManagerTests.m │ │ ├── RCTPerformanceLoggerTests.m │ │ ├── RCTShadowViewTests.m │ │ ├── RCTUIManagerTests.m │ │ ├── RCTURLUtilsTests.m │ │ ├── RCTUnicodeDecodeTests.m │ │ ├── RCTUtilsTests.m │ │ ├── RCTViewTests.m │ │ └── RNTesterUnitTestsBundle.js │ ├── android │ │ └── app │ │ │ ├── build.gradle.kts │ │ │ ├── gradle.properties │ │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── notoserif.ttf │ │ │ │ └── notoserif_bold_italic.ttf │ │ │ ├── ic_launcher-playstore.png │ │ │ ├── java │ │ │ └── com │ │ │ │ └── facebook │ │ │ │ └── react │ │ │ │ └── uiapp │ │ │ │ ├── RNTesterActivity.kt │ │ │ │ ├── RNTesterApplication.kt │ │ │ │ └── component │ │ │ │ ├── MyLegacyViewManager.kt │ │ │ │ ├── MyNativeView.kt │ │ │ │ └── MyNativeViewManager.kt │ │ │ ├── jni │ │ │ ├── CMakeLists.txt │ │ │ └── OnLoad.cpp │ │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_create_black_48dp.png │ │ │ ├── ic_launcher_background.xml │ │ │ ├── ic_launcher_foreground.xml │ │ │ ├── ic_menu_black_24dp.png │ │ │ ├── ic_settings_black_48dp.png │ │ │ ├── legacy_image.png │ │ │ └── tv_banner.png │ │ │ ├── font │ │ │ ├── rubik.xml │ │ │ ├── rubik_bold.ttf │ │ │ ├── rubik_light.ttf │ │ │ ├── rubik_medium.ttf │ │ │ ├── rubik_medium_italic.ttf │ │ │ └── rubik_regular.ttf │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── js │ │ ├── RNTesterApp.android.js │ │ ├── RNTesterApp.ios.js │ │ ├── RNTesterApp.js.flow │ │ ├── RNTesterAppShared.js │ │ ├── assets │ │ │ ├── bandaged.png │ │ │ ├── bottom-nav-apis-icon-active.png │ │ │ ├── bottom-nav-apis-icon-inactive.png │ │ │ ├── bottom-nav-components-icon-active.png │ │ │ ├── bottom-nav-components-icon-inactive.png │ │ │ ├── bunny.png │ │ │ ├── call.png │ │ │ ├── dislike.png │ │ │ ├── documentation.png │ │ │ ├── empty.png │ │ │ ├── fist.png │ │ │ ├── flowers.png │ │ │ ├── flux@3x.png │ │ │ ├── hawk.png │ │ │ ├── header-back-button.png │ │ │ ├── heart.png │ │ │ ├── helloworld.html │ │ │ ├── imageMask.png │ │ │ ├── like.png │ │ │ ├── liking.png │ │ │ ├── messagingtest.html │ │ │ ├── party.png │ │ │ ├── poke.png │ │ │ ├── relay@3x.png │ │ │ ├── search-icon.png │ │ │ ├── superlike.png │ │ │ ├── trees.jpg │ │ │ ├── tumblr_mfqekpMktw1rn90umo1_500.gif │ │ │ ├── uie_comment_highlighted@2x.png │ │ │ ├── uie_comment_normal@2x.png │ │ │ ├── uie_thumb_big.png │ │ │ ├── uie_thumb_normal@2x.png │ │ │ ├── uie_thumb_selected@2x.png │ │ │ └── victory.png │ │ ├── components │ │ │ ├── ListExampleShared.js │ │ │ ├── RNTConfigurationBlock.js │ │ │ ├── RNTOption.js │ │ │ ├── RNTPressableRow.js │ │ │ ├── RNTTestDetails.js │ │ │ ├── RNTTitleBar.js │ │ │ ├── RNTesterBlock.js │ │ │ ├── RNTesterButton.js │ │ │ ├── RNTesterComponentTitle.js │ │ │ ├── RNTesterDocumentationURL.js │ │ │ ├── RNTesterExampleFilter.js │ │ │ ├── RNTesterListFilters.js │ │ │ ├── RNTesterModuleContainer.js │ │ │ ├── RNTesterModuleList.js │ │ │ ├── RNTesterNavbar.js │ │ │ ├── RNTesterPage.js │ │ │ ├── RNTesterSettingSwitchRow.js │ │ │ ├── RNTesterTheme.js │ │ │ ├── RNTesterTitle.js │ │ │ ├── TextInlineView.js │ │ │ ├── TextLegend.js │ │ │ ├── UseCase.js │ │ │ └── createExamplePage.js │ │ ├── examples │ │ │ ├── Accessibility │ │ │ │ ├── AccessibilityAndroidExample.js │ │ │ │ ├── AccessibilityExample.js │ │ │ │ ├── AccessibilityIOSExample.js │ │ │ │ ├── check.png │ │ │ │ ├── mixed.png │ │ │ │ └── uncheck.png │ │ │ ├── ActionSheetIOS │ │ │ │ └── ActionSheetIOSExample.js │ │ │ ├── ActivityIndicator │ │ │ │ └── ActivityIndicatorExample.js │ │ │ ├── Alert │ │ │ │ └── AlertExample.js │ │ │ ├── Animated │ │ │ │ ├── AnimatedIndex.js │ │ │ │ ├── ColorStylesExample.js │ │ │ │ ├── ComposeAnimationsWithEasingExample.js │ │ │ │ ├── ComposingExample.js │ │ │ │ ├── ContinuousInteractionsExample.js │ │ │ │ ├── EasingExample.js │ │ │ │ ├── FadeInViewExample.js │ │ │ │ ├── LoopingExample.js │ │ │ │ ├── MovingBoxExample.js │ │ │ │ ├── RotatingImagesExample.js │ │ │ │ ├── TransformBounceExample.js │ │ │ │ ├── TransformStylesExample.js │ │ │ │ └── utils │ │ │ │ │ └── ToggleNativeDriver.js │ │ │ ├── AnimatedGratuitousApp │ │ │ │ ├── AnExApp.js │ │ │ │ ├── AnExBobble.js │ │ │ │ ├── AnExChained.js │ │ │ │ ├── AnExScroll.js │ │ │ │ ├── AnExSet.js │ │ │ │ ├── AnExSlides.md │ │ │ │ └── AnExTilt.js │ │ │ ├── AppState │ │ │ │ └── AppStateExample.js │ │ │ ├── Appearance │ │ │ │ └── AppearanceExample.js │ │ │ ├── Border │ │ │ │ └── BorderExample.js │ │ │ ├── BoxShadow │ │ │ │ └── BoxShadowExample.js │ │ │ ├── Button │ │ │ │ └── ButtonExample.js │ │ │ ├── Crash │ │ │ │ └── CrashExample.js │ │ │ ├── DevSettings │ │ │ │ └── DevSettingsExample.js │ │ │ ├── Dimensions │ │ │ │ └── DimensionsExample.js │ │ │ ├── DrawerLayoutAndroid │ │ │ │ └── DrawerLayoutAndroidExample.js │ │ │ ├── Experimental │ │ │ │ ├── Compatibility │ │ │ │ │ ├── CompatibilityAnimatedPointerMove.js │ │ │ │ │ ├── CompatibilityNativeGestureHandling.js │ │ │ │ │ └── ManyPointersPropertiesExample.js │ │ │ │ ├── PlatformTest │ │ │ │ │ ├── README.md │ │ │ │ │ ├── RNTesterPlatformTest.js │ │ │ │ │ ├── RNTesterPlatformTestEventRecorder.js │ │ │ │ │ ├── RNTesterPlatformTestInstructions.js │ │ │ │ │ ├── RNTesterPlatformTestMinimizedResultView.js │ │ │ │ │ ├── RNTesterPlatformTestResultView.js │ │ │ │ │ ├── RNTesterPlatformTestResultsText.js │ │ │ │ │ ├── RNTesterPlatformTestTypes.js │ │ │ │ │ └── usePlatformTestHarness.js │ │ │ │ ├── W3CPointerEventPlatformTests │ │ │ │ │ ├── PointerEventAccessibility.js │ │ │ │ │ ├── PointerEventAttributesHoverablePointers.js │ │ │ │ │ ├── PointerEventAttributesNoHoverPointers.js │ │ │ │ │ ├── PointerEventCaptureMouse.js │ │ │ │ │ ├── PointerEventClickTouch.js │ │ │ │ │ ├── PointerEventClickTouchHierarchy.js │ │ │ │ │ ├── PointerEventClickTouchHierarchyPointerEvents.js │ │ │ │ │ ├── PointerEventLayoutChangeShouldFirePointerOver.js │ │ │ │ │ ├── PointerEventPointerCancelTouch.js │ │ │ │ │ ├── PointerEventPointerMove.js │ │ │ │ │ ├── PointerEventPointerMoveAcross.js │ │ │ │ │ ├── PointerEventPointerMoveBetween.js │ │ │ │ │ ├── PointerEventPointerMoveEventOrder.js │ │ │ │ │ ├── PointerEventPointerMoveOnChordedMouseButton.js │ │ │ │ │ ├── PointerEventPointerOverOut.js │ │ │ │ │ ├── PointerEventPrimaryTouchPointer.js │ │ │ │ │ └── PointerEventSupport.js │ │ │ │ ├── W3CPointerEventsEventfulView.js │ │ │ │ └── W3CPointerEventsExample.js │ │ │ ├── FlatList │ │ │ │ ├── BaseFlatListExample.js │ │ │ │ ├── FlatList-basic.js │ │ │ │ ├── FlatList-contentInset.js │ │ │ │ ├── FlatList-inverted.js │ │ │ │ ├── FlatList-multiColumn.js │ │ │ │ ├── FlatList-nested.js │ │ │ │ ├── FlatList-onEndReached.js │ │ │ │ ├── FlatList-onStartReached.js │ │ │ │ ├── FlatList-onViewableItemsChanged.js │ │ │ │ ├── FlatList-stickyHeaders.js │ │ │ │ ├── FlatList-withSeparators.js │ │ │ │ └── FlatListExampleIndex.js │ │ │ ├── Image │ │ │ │ ├── ImageCapInsetsExample.js │ │ │ │ └── ImageExample.js │ │ │ ├── InputAccessoryView │ │ │ │ └── InputAccessoryViewExample.js │ │ │ ├── IntersectionObserver │ │ │ │ ├── IntersectionObserverBenchmark.js │ │ │ │ ├── IntersectionObserverIndex.js │ │ │ │ └── IntersectionObserverMDNExample.js │ │ │ ├── InvalidProps │ │ │ │ └── InvalidPropsExample.js │ │ │ ├── JSResponderHandlerExample │ │ │ │ └── JSResponderHandlerExample.js │ │ │ ├── Keyboard │ │ │ │ └── KeyboardExample.js │ │ │ ├── KeyboardAvoidingView │ │ │ │ └── KeyboardAvoidingViewExample.js │ │ │ ├── Layout │ │ │ │ ├── LayoutAnimationExample.js │ │ │ │ ├── LayoutEventsExample.js │ │ │ │ └── LayoutExample.js │ │ │ ├── Linking │ │ │ │ └── LinkingExample.js │ │ │ ├── Modal │ │ │ │ ├── ModalExample.js │ │ │ │ ├── ModalOnShow.js │ │ │ │ └── ModalPresentation.js │ │ │ ├── MutationObserver │ │ │ │ ├── MutationObserverExample.js │ │ │ │ ├── MutationObserverIndex.js │ │ │ │ └── VisualCompletionExample │ │ │ │ │ ├── VCOverlayExample.js │ │ │ │ │ ├── VCTrackerExample.js │ │ │ │ │ └── VisualCompletionExample.js │ │ │ ├── NativeAnimation │ │ │ │ └── NativeAnimationsExample.js │ │ │ ├── NewAppScreen │ │ │ │ └── NewAppScreenExample.js │ │ │ ├── NewArchitecture │ │ │ │ └── NewArchitectureExample.js │ │ │ ├── OrientationChange │ │ │ │ └── OrientationChangeExample.js │ │ │ ├── PanResponder │ │ │ │ └── PanResponderExample.js │ │ │ ├── Performance │ │ │ │ ├── PerformanceApiExample.js │ │ │ │ ├── PerformanceComparisonExample.js │ │ │ │ ├── components │ │ │ │ │ ├── ItemList.js │ │ │ │ │ └── itemData.js │ │ │ │ └── performanceComparisonExamples │ │ │ │ │ ├── EffectInRenderExample.js │ │ │ │ │ ├── NotMemoizeExpensiveTaskExample.js │ │ │ │ │ ├── ReRenderWithNonPureChildExample.js │ │ │ │ │ ├── ReRenderWithObjectPropExample.js │ │ │ │ │ ├── RenderOffscreenContentExample.js │ │ │ │ │ ├── SetStateInWrongEffectExample.js │ │ │ │ │ ├── SetStateInWrongEffectExample2.js │ │ │ │ │ └── index.js │ │ │ ├── PermissionsAndroid │ │ │ │ └── PermissionsExample.js │ │ │ ├── PlatformColor │ │ │ │ └── PlatformColorExample.js │ │ │ ├── PointerEvents │ │ │ │ └── PointerEventsExample.js │ │ │ ├── Pressable │ │ │ │ └── PressableExample.js │ │ │ ├── RCTRootView │ │ │ │ └── RCTRootViewIOSExample.js │ │ │ ├── RTL │ │ │ │ └── RTLExample.js │ │ │ ├── RefreshControl │ │ │ │ └── RefreshControlExample.js │ │ │ ├── RootViewSizeFlexibilityExample │ │ │ │ └── RootViewSizeFlexibilityExampleApp.js │ │ │ ├── SafeAreaView │ │ │ │ └── SafeAreaViewExample.js │ │ │ ├── ScrollView │ │ │ │ ├── ScrollViewAnimatedExample.js │ │ │ │ ├── ScrollViewExample.js │ │ │ │ ├── ScrollViewIndicatorInsetsIOSExample.js │ │ │ │ ├── ScrollViewKeyboardInsetsIOSExample.js │ │ │ │ ├── ScrollViewPressableStickyHeaderExample.js │ │ │ │ └── ScrollViewSimpleExample.js │ │ │ ├── SectionList │ │ │ │ ├── SectionList-contentInset.js │ │ │ │ ├── SectionList-inverted.js │ │ │ │ ├── SectionList-onEndReached.js │ │ │ │ ├── SectionList-onViewableItemsChanged.js │ │ │ │ ├── SectionList-scrollable.js │ │ │ │ ├── SectionList-stickyHeadersEnabled.js │ │ │ │ ├── SectionList-withSeparators.js │ │ │ │ ├── SectionListBaseExample.js │ │ │ │ └── SectionListIndex.js │ │ │ ├── SetPropertiesExample │ │ │ │ └── SetPropertiesExampleApp.js │ │ │ ├── Share │ │ │ │ └── ShareExample.js │ │ │ ├── Snapshot │ │ │ │ ├── SnapshotExample.js │ │ │ │ ├── SnapshotViewIOS.android.js │ │ │ │ └── SnapshotViewIOS.ios.js │ │ │ ├── StatusBar │ │ │ │ └── StatusBarExample.js │ │ │ ├── SwipeableCardExample │ │ │ │ └── SwipeableCardExample.js │ │ │ ├── Switch │ │ │ │ └── SwitchExample.js │ │ │ ├── Text │ │ │ │ ├── TextAdjustsDynamicLayoutExample.js │ │ │ │ ├── TextExample.android.js │ │ │ │ ├── TextExample.ios.js │ │ │ │ └── TextExample.js.flow │ │ │ ├── TextInput │ │ │ │ ├── TextInputExample.android.js │ │ │ │ ├── TextInputExample.ios.js │ │ │ │ ├── TextInputExample.js.flow │ │ │ │ ├── TextInputKeyProp.js │ │ │ │ └── TextInputSharedExamples.js │ │ │ ├── Timer │ │ │ │ └── TimerExample.js │ │ │ ├── ToastAndroid │ │ │ │ └── ToastAndroidExample.js │ │ │ ├── Touchable │ │ │ │ └── TouchableExample.js │ │ │ ├── Transform │ │ │ │ └── TransformExample.js │ │ │ ├── TransparentHitTest │ │ │ │ └── TransparentHitTestExample.js │ │ │ ├── TurboModule │ │ │ │ ├── LegacyModuleExample.js │ │ │ │ ├── NativeCxxModuleExampleExample.js │ │ │ │ ├── SampleLegacyModuleExample.js │ │ │ │ ├── SampleTurboModuleExample.js │ │ │ │ ├── TurboCxxModuleExample.js │ │ │ │ ├── TurboModuleExample.js │ │ │ │ └── TurboModuleExampleCommon.js │ │ │ ├── Vibration │ │ │ │ └── VibrationExample.js │ │ │ ├── View │ │ │ │ └── ViewExample.js │ │ │ ├── WebSocket │ │ │ │ ├── WebSocketExample.js │ │ │ │ ├── http_test_server.js │ │ │ │ └── websocket_test_server.js │ │ │ └── XHR │ │ │ │ ├── XHRExample.js │ │ │ │ ├── XHRExampleAbortController.js │ │ │ │ ├── XHRExampleBinaryUpload.js │ │ │ │ ├── XHRExampleDownload.js │ │ │ │ ├── XHRExampleFetch.js │ │ │ │ ├── XHRExampleHeaders.js │ │ │ │ └── XHRExampleOnTimeOut.js │ │ ├── types │ │ │ └── RNTesterTypes.js │ │ └── utils │ │ │ ├── RNTesterList.android.js │ │ │ ├── RNTesterList.ios.js │ │ │ ├── RNTesterList.js.flow │ │ │ ├── RNTesterNavigationReducer.js │ │ │ ├── testerStateUtils.js │ │ │ └── useJsStalls.js │ ├── metro.config.js │ ├── package.json │ └── react-native.config.js ├── typescript-config │ ├── README.md │ ├── package.json │ └── tsconfig.json └── virtualized-lists │ ├── .npmignore │ ├── Interaction │ ├── Batchinator.js │ └── __tests__ │ │ └── Batchinator-test.js │ ├── Lists │ ├── CellRenderMask.js │ ├── ChildListCollection.js │ ├── FillRateHelper.js │ ├── ListMetricsAggregator.js │ ├── StateSafePureComponent.js │ ├── ViewabilityHelper.js │ ├── VirtualizeUtils.js │ ├── VirtualizedList.d.ts │ ├── VirtualizedList.js │ ├── VirtualizedListCellRenderer.js │ ├── VirtualizedListContext.js │ ├── VirtualizedListProps.js │ ├── VirtualizedSectionList.js │ └── __tests__ │ │ ├── CellRenderMask-test.js │ │ ├── FillRateHelper-test.js │ │ ├── ListMetricsAggregator-test.js │ │ ├── ViewabilityHelper-test.js │ │ ├── VirtualizeUtils-test.js │ │ ├── VirtualizedList-test.js │ │ ├── VirtualizedSectionList-test.js │ │ └── __snapshots__ │ │ ├── VirtualizedList-test.js.snap │ │ └── VirtualizedSectionList-test.js.snap │ ├── README.md │ ├── Utilities │ ├── __tests__ │ │ └── clamp-test.js │ ├── clamp.js │ └── infoLog.js │ ├── index.d.ts │ ├── index.js │ └── package.json ├── runXcodeTests.sh ├── scripts ├── .tests.env ├── __tests__ │ ├── npm-utils-test.js │ ├── publish-npm-test.js │ ├── scm-utils-test.js │ ├── set-rn-version-test.js │ └── version-utils-test.js ├── android-e2e-test.js ├── android-setup.sh ├── build │ ├── babel-register.js │ ├── babel │ │ └── node.config.js │ ├── build.js │ ├── clean.js │ └── config.js ├── circle-ci-artifacts-utils.js ├── circleci │ ├── analyze_code.sh │ ├── analyze_scripts.sh │ ├── apt-get-android-deps.sh │ ├── check_appium_server_status.sh │ ├── check_license.sh │ ├── exec_swallow_error.sh │ ├── pipeline_selection.js │ ├── poll-maven.js │ ├── report-bundle-size.sh │ ├── retry.js │ ├── run_with_retry.js │ └── validate_yarn_lockfile.sh ├── debugger-frontend │ └── sync-and-build.js ├── e2e │ └── run-e2e-tests.js ├── lint-java.js ├── monorepo │ ├── __tests__ │ │ ├── __fixtures__ │ │ │ └── get-and-update-packages-fixtures.js │ │ ├── bump-package-version-test.js │ │ ├── find-and-publish-all-bumped-packages-test.js │ │ ├── for-each-package-test.js │ │ └── get-and-update-packages-test.js │ ├── align-package-versions.js │ ├── bump-all-updated-packages │ │ ├── bump-package-version.js │ │ ├── bump-utils.js │ │ └── index.js │ ├── check-for-git-changes.js │ ├── constants.js │ ├── find-and-publish-all-bumped-packages.js │ ├── for-each-package.js │ ├── get-and-update-packages.js │ └── print │ │ └── index.js ├── npm-utils.js ├── objc-test.sh ├── prepare-package-for-release.js ├── process-podspecs.sh ├── publish-npm.js ├── release-utils.js ├── releases │ ├── __tests__ │ │ ├── __fixtures__ │ │ │ └── remove-new-arch-flags-fixture.js │ │ └── remove-new-arch-flags-test.js │ └── remove-new-arch-flags.js ├── run-android-emulator.sh ├── run-android-local-unit-tests.sh ├── run-ci-e2e-tests.js ├── run-ci-javascript-tests.js ├── run-instrumentation-tests-via-adb-shell.sh ├── scm-utils.js ├── set-rn-version.js ├── setup-verdaccio.js ├── sync-css-layout.sh ├── template │ └── initialize.js ├── test-e2e-local-clean.js ├── test-e2e-local.js ├── testing-utils.js ├── trigger-react-native-release.js ├── try-n-times.js ├── update-template-package.js ├── update_podfile_lock.sh ├── validate-android-device-env.sh ├── validate-android-sdk.sh ├── validate-android-test-env.sh ├── validate-ios-test-env.sh ├── version-utils.js └── versiontemplates │ ├── RCTVersion.m.template │ ├── ReactNativeVersion.h.template │ ├── ReactNativeVersion.java.template │ └── ReactNativeVersion.js.template ├── settings.gradle.kts ├── tools ├── __tests__ │ ├── no-dependencies-in-root-package-test.js │ ├── no-dev-dependencies-in-react-native-package-test.js │ └── no-dev-dependencies-in-tester-package.js └── eslint │ ├── README.md │ ├── package.json │ └── rules │ ├── __tests__ │ ├── no-haste-imports-test.js │ ├── no-react-native-imports-test.js │ ├── react-native-manifest-test.js │ ├── require-extends-error-test.js │ └── valid-flow-typed-signature-test.js │ ├── no-haste-imports.js │ ├── no-react-native-imports.js │ ├── react-native-manifest.js │ ├── require-extends-error.js │ ├── sort-imports.js │ └── valid-flow-typed-signature.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.babelrc -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.buckconfig -------------------------------------------------------------------------------- /.buckjavaargs: -------------------------------------------------------------------------------- 1 | -Xmx512m -XX:+HeapDumpOnOutOfMemoryError 2 | -------------------------------------------------------------------------------- /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.bundle/config -------------------------------------------------------------------------------- /.circleci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.circleci/README.md -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/configurations/commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.circleci/configurations/commands.yml -------------------------------------------------------------------------------- /.circleci/configurations/executors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.circleci/configurations/executors.yml -------------------------------------------------------------------------------- /.circleci/configurations/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.circleci/configurations/jobs.yml -------------------------------------------------------------------------------- /.circleci/configurations/test_workflows/testAll.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.circleci/configurations/test_workflows/testAll.yml -------------------------------------------------------------------------------- /.circleci/configurations/test_workflows/testE2E.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.circleci/configurations/test_workflows/testE2E.yml -------------------------------------------------------------------------------- /.circleci/configurations/test_workflows/testIOS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.circleci/configurations/test_workflows/testIOS.yml -------------------------------------------------------------------------------- /.circleci/configurations/test_workflows/testJS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.circleci/configurations/test_workflows/testJS.yml -------------------------------------------------------------------------------- /.circleci/configurations/top_level.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.circleci/configurations/top_level.yml -------------------------------------------------------------------------------- /.circleci/configurations/workflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.circleci/configurations/workflows.yml -------------------------------------------------------------------------------- /.circleci/verdaccio.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.circleci/verdaccio.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.flowconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_architecture_bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.github/ISSUE_TEMPLATE/new_architecture_bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/upgrade_regression_form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.github/ISSUE_TEMPLATE/upgrade_regression_form.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/RELEASE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.github/RELEASE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/workflow-scripts/actOnLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.github/workflow-scripts/actOnLabel.js -------------------------------------------------------------------------------- /.github/workflow-scripts/addDescriptiveLabels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.github/workflow-scripts/addDescriptiveLabels.js -------------------------------------------------------------------------------- /.github/workflow-scripts/checkForReproducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.github/workflow-scripts/checkForReproducer.js -------------------------------------------------------------------------------- /.github/workflow-scripts/verifyVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.github/workflow-scripts/verifyVersion.js -------------------------------------------------------------------------------- /.github/workflows/apply-version-label-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.github/workflows/apply-version-label-issue.yml -------------------------------------------------------------------------------- /.github/workflows/autorebase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.github/workflows/autorebase.yml -------------------------------------------------------------------------------- /.github/workflows/check-for-reproducer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.github/workflows/check-for-reproducer.yml -------------------------------------------------------------------------------- /.github/workflows/close_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.github/workflows/close_pr.yml -------------------------------------------------------------------------------- /.github/workflows/danger_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.github/workflows/danger_pr.yml -------------------------------------------------------------------------------- /.github/workflows/ios-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.github/workflows/ios-tests.yml -------------------------------------------------------------------------------- /.github/workflows/needs-attention.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.github/workflows/needs-attention.yml -------------------------------------------------------------------------------- /.github/workflows/on-issue-labeled.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.github/workflows/on-issue-labeled.yml -------------------------------------------------------------------------------- /.github/workflows/run_e2e_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.github/workflows/run_e2e_tests.yml -------------------------------------------------------------------------------- /.github/workflows/stale-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.github/workflows/stale-bot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG-pre-060.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/CHANGELOG-pre-060.md -------------------------------------------------------------------------------- /CHANGELOG-pre-070.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/CHANGELOG-pre-070.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ECOSYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/ECOSYSTEM.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/LICENSE-docs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/README.md -------------------------------------------------------------------------------- /flow-typed/npm/@isaacs/ttlcache_1.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/@isaacs/ttlcache_1.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/@tsconfig/node18_v1.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/@tsconfig/node18_v1.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/actual-request-url_v1.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/actual-request-url_v1.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/ansi-regex_v5.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/ansi-regex_v5.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-traverse_v7.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/babel-traverse_v7.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-types_v7.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/babel-types_v7.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel_v7.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/babel_v7.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/base64-js_v1.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/base64-js_v1.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/chalk_v4.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/chalk_v4.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/chrome-launcher_v0.15.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/chrome-launcher_v0.15.x.js -------------------------------------------------------------------------------- /flow-typed/npm/connect_v3.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/connect_v3.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/data-uri-to-buffer_v6.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/data-uri-to-buffer_v6.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/debug_v2.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/debug_v2.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/execa_v5.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/execa_v5.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/glob_v7.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/glob_v7.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/node-fetch_v2.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/node-fetch_v2.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/open_v7.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/open_v7.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/parseargs_v0.11.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/parseargs_v0.11.x.js -------------------------------------------------------------------------------- /flow-typed/npm/pretty-format_v26.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/pretty-format_v26.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/promise_v8.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/promise_v8.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-dom_v17.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/react-dom_v17.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-test-renderer_v16.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/react-test-renderer_v16.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/selfsigned_v2.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/selfsigned_v2.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/serve-static_v1.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/serve-static_v1.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/stacktrace-parser_v0.1.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/stacktrace-parser_v0.1.x.js -------------------------------------------------------------------------------- /flow-typed/npm/temp-dir_2.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/temp-dir_2.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/typescript_v5.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/typescript_v5.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/undici_v5.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/undici_v5.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/wait-for-expect_v3.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/wait-for-expect_v3.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/ws_v7.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/ws_v7.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/yargs_v17.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/flow-typed/npm/yargs_v17.x.x.js -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/gradle-enterprise.gradle.kts.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/gradle/gradle-enterprise.gradle.kts.sample -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/gradlew.bat -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest/preprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/jest/preprocessor.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/package.json -------------------------------------------------------------------------------- /packages/assets/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/assets/.npmignore -------------------------------------------------------------------------------- /packages/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/assets/README.md -------------------------------------------------------------------------------- /packages/assets/__tests__/path-support-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/assets/__tests__/path-support-test.js -------------------------------------------------------------------------------- /packages/assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/assets/package.json -------------------------------------------------------------------------------- /packages/assets/path-support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/assets/path-support.js -------------------------------------------------------------------------------- /packages/assets/registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/assets/registry.js -------------------------------------------------------------------------------- /packages/babel-plugin-codegen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/babel-plugin-codegen/README.md -------------------------------------------------------------------------------- /packages/babel-plugin-codegen/__tests__/index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/babel-plugin-codegen/__tests__/index-test.js -------------------------------------------------------------------------------- /packages/babel-plugin-codegen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/babel-plugin-codegen/index.js -------------------------------------------------------------------------------- /packages/babel-plugin-codegen/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/babel-plugin-codegen/package.json -------------------------------------------------------------------------------- /packages/community-cli-plugin/.gitignore: -------------------------------------------------------------------------------- 1 | # Dependencies 2 | /node_modules 3 | 4 | # Build output 5 | /dist 6 | -------------------------------------------------------------------------------- /packages/community-cli-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/community-cli-plugin/README.md -------------------------------------------------------------------------------- /packages/community-cli-plugin/index.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/community-cli-plugin/index.js.flow -------------------------------------------------------------------------------- /packages/community-cli-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/community-cli-plugin/package.json -------------------------------------------------------------------------------- /packages/community-cli-plugin/src/index.flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/community-cli-plugin/src/index.flow.js -------------------------------------------------------------------------------- /packages/community-cli-plugin/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/community-cli-plugin/src/index.js -------------------------------------------------------------------------------- /packages/debugger-frontend/BUILD_INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/debugger-frontend/BUILD_INFO -------------------------------------------------------------------------------- /packages/debugger-frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/debugger-frontend/README.md -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/debugger-frontend/dist/third-party/LICENSE -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthRequestCanceled.md: -------------------------------------------------------------------------------- 1 | # The request has been aborted. 2 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthRequestErrorIdToken.md: -------------------------------------------------------------------------------- 1 | # Error retrieving a token. 2 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/panels/js_profiler/js_profiler.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/panels/recorder/recorder-actions.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /packages/debugger-frontend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/debugger-frontend/index.js -------------------------------------------------------------------------------- /packages/debugger-frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/debugger-frontend/package.json -------------------------------------------------------------------------------- /packages/dev-middleware/.gitignore: -------------------------------------------------------------------------------- 1 | # Dependencies 2 | /node_modules 3 | 4 | # Build output 5 | /dist 6 | -------------------------------------------------------------------------------- /packages/dev-middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/dev-middleware/README.md -------------------------------------------------------------------------------- /packages/dev-middleware/index.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/dev-middleware/index.js.flow -------------------------------------------------------------------------------- /packages/dev-middleware/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/dev-middleware/package.json -------------------------------------------------------------------------------- /packages/dev-middleware/src/__tests__/FetchUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/dev-middleware/src/__tests__/FetchUtils.js -------------------------------------------------------------------------------- /packages/dev-middleware/src/__tests__/ResourceUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/dev-middleware/src/__tests__/ResourceUtils.js -------------------------------------------------------------------------------- /packages/dev-middleware/src/__tests__/ServerUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/dev-middleware/src/__tests__/ServerUtils.js -------------------------------------------------------------------------------- /packages/dev-middleware/src/__tests__/__fixtures__/mock-source-file.txt: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /packages/dev-middleware/src/createDevMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/dev-middleware/src/createDevMiddleware.js -------------------------------------------------------------------------------- /packages/dev-middleware/src/index.flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/dev-middleware/src/index.flow.js -------------------------------------------------------------------------------- /packages/dev-middleware/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/dev-middleware/src/index.js -------------------------------------------------------------------------------- /packages/dev-middleware/src/inspector-proxy/Device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/dev-middleware/src/inspector-proxy/Device.js -------------------------------------------------------------------------------- /packages/dev-middleware/src/inspector-proxy/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/dev-middleware/src/inspector-proxy/types.js -------------------------------------------------------------------------------- /packages/dev-middleware/src/types/BrowserLauncher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/dev-middleware/src/types/BrowserLauncher.js -------------------------------------------------------------------------------- /packages/dev-middleware/src/types/EventReporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/dev-middleware/src/types/EventReporter.js -------------------------------------------------------------------------------- /packages/dev-middleware/src/types/Experiments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/dev-middleware/src/types/Experiments.js -------------------------------------------------------------------------------- /packages/dev-middleware/src/types/Logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/dev-middleware/src/types/Logger.js -------------------------------------------------------------------------------- /packages/eslint-config-react-native/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/eslint-config-react-native/README.md -------------------------------------------------------------------------------- /packages/eslint-config-react-native/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/eslint-config-react-native/index.js -------------------------------------------------------------------------------- /packages/eslint-config-react-native/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/eslint-config-react-native/package.json -------------------------------------------------------------------------------- /packages/eslint-plugin-react-native/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/eslint-plugin-react-native/README.md -------------------------------------------------------------------------------- /packages/eslint-plugin-react-native/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/eslint-plugin-react-native/index.js -------------------------------------------------------------------------------- /packages/eslint-plugin-react-native/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/eslint-plugin-react-native/package.json -------------------------------------------------------------------------------- /packages/eslint-plugin-react-native/platform-colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/eslint-plugin-react-native/platform-colors.js -------------------------------------------------------------------------------- /packages/eslint-plugin-specs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/eslint-plugin-specs/README.md -------------------------------------------------------------------------------- /packages/eslint-plugin-specs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/eslint-plugin-specs/index.js -------------------------------------------------------------------------------- /packages/eslint-plugin-specs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/eslint-plugin-specs/package.json -------------------------------------------------------------------------------- /packages/eslint-plugin-specs/postpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/eslint-plugin-specs/postpack.js -------------------------------------------------------------------------------- /packages/eslint-plugin-specs/prepack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/eslint-plugin-specs/prepack.js -------------------------------------------------------------------------------- /packages/eslint-plugin-specs/react-native-modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/eslint-plugin-specs/react-native-modules.js -------------------------------------------------------------------------------- /packages/hermes-inspector-msggen/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/hermes-inspector-msggen/.babelrc -------------------------------------------------------------------------------- /packages/hermes-inspector-msggen/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin/ 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /packages/hermes-inspector-msggen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/hermes-inspector-msggen/README.md -------------------------------------------------------------------------------- /packages/hermes-inspector-msggen/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/hermes-inspector-msggen/package.json -------------------------------------------------------------------------------- /packages/hermes-inspector-msggen/src/Command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/hermes-inspector-msggen/src/Command.js -------------------------------------------------------------------------------- /packages/hermes-inspector-msggen/src/Converters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/hermes-inspector-msggen/src/Converters.js -------------------------------------------------------------------------------- /packages/hermes-inspector-msggen/src/Event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/hermes-inspector-msggen/src/Event.js -------------------------------------------------------------------------------- /packages/hermes-inspector-msggen/src/Graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/hermes-inspector-msggen/src/Graph.js -------------------------------------------------------------------------------- /packages/hermes-inspector-msggen/src/HeaderWriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/hermes-inspector-msggen/src/HeaderWriter.js -------------------------------------------------------------------------------- /packages/hermes-inspector-msggen/src/Property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/hermes-inspector-msggen/src/Property.js -------------------------------------------------------------------------------- /packages/hermes-inspector-msggen/src/TestHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/hermes-inspector-msggen/src/TestHelpers.js -------------------------------------------------------------------------------- /packages/hermes-inspector-msggen/src/Type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/hermes-inspector-msggen/src/Type.js -------------------------------------------------------------------------------- /packages/hermes-inspector-msggen/src/custom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/hermes-inspector-msggen/src/custom.json -------------------------------------------------------------------------------- /packages/hermes-inspector-msggen/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/hermes-inspector-msggen/src/index.js -------------------------------------------------------------------------------- /packages/metro-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/metro-config/README.md -------------------------------------------------------------------------------- /packages/metro-config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/metro-config/index.js -------------------------------------------------------------------------------- /packages/metro-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/metro-config/package.json -------------------------------------------------------------------------------- /packages/normalize-color/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/normalize-color/.npmignore -------------------------------------------------------------------------------- /packages/normalize-color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/normalize-color/README.md -------------------------------------------------------------------------------- /packages/normalize-color/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/normalize-color/index.js -------------------------------------------------------------------------------- /packages/normalize-color/index.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/normalize-color/index.js.flow -------------------------------------------------------------------------------- /packages/normalize-color/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/normalize-color/package.json -------------------------------------------------------------------------------- /packages/polyfills/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/polyfills/.npmignore -------------------------------------------------------------------------------- /packages/polyfills/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/polyfills/README.md -------------------------------------------------------------------------------- /packages/polyfills/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/polyfills/console.js -------------------------------------------------------------------------------- /packages/polyfills/error-guard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/polyfills/error-guard.js -------------------------------------------------------------------------------- /packages/polyfills/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/polyfills/index.js -------------------------------------------------------------------------------- /packages/polyfills/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/polyfills/package.json -------------------------------------------------------------------------------- /packages/react-native-babel-preset/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-babel-preset/.npmignore -------------------------------------------------------------------------------- /packages/react-native-babel-preset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-babel-preset/README.md -------------------------------------------------------------------------------- /packages/react-native-babel-preset/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-babel-preset/package.json -------------------------------------------------------------------------------- /packages/react-native-babel-preset/src/configs/hmr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-babel-preset/src/configs/hmr.js -------------------------------------------------------------------------------- /packages/react-native-babel-preset/src/configs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-babel-preset/src/configs/main.js -------------------------------------------------------------------------------- /packages/react-native-babel-preset/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-babel-preset/src/index.js -------------------------------------------------------------------------------- /packages/react-native-babel-transformer/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-babel-transformer/.npmignore -------------------------------------------------------------------------------- /packages/react-native-babel-transformer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-babel-transformer/package.json -------------------------------------------------------------------------------- /packages/react-native-babel-transformer/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-babel-transformer/src/index.js -------------------------------------------------------------------------------- /packages/react-native-bots/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /packages/react-native-bots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-bots/README.md -------------------------------------------------------------------------------- /packages/react-native-bots/code-analysis-bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-bots/code-analysis-bot.js -------------------------------------------------------------------------------- /packages/react-native-bots/dangerfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-bots/dangerfile.js -------------------------------------------------------------------------------- /packages/react-native-bots/datastore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-bots/datastore.js -------------------------------------------------------------------------------- /packages/react-native-bots/make-comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-bots/make-comment.js -------------------------------------------------------------------------------- /packages/react-native-bots/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-bots/package.json -------------------------------------------------------------------------------- /packages/react-native-bots/report-bundle-size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-bots/report-bundle-size.js -------------------------------------------------------------------------------- /packages/react-native-codegen-typescript-test/__generated__/.gitignore: -------------------------------------------------------------------------------- 1 | *.ts 2 | -------------------------------------------------------------------------------- /packages/react-native-codegen/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-codegen/.babelrc -------------------------------------------------------------------------------- /packages/react-native-codegen/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-codegen/.prettierrc -------------------------------------------------------------------------------- /packages/react-native-codegen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-codegen/README.md -------------------------------------------------------------------------------- /packages/react-native-codegen/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-codegen/package.json -------------------------------------------------------------------------------- /packages/react-native-codegen/scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-codegen/scripts/build.js -------------------------------------------------------------------------------- /packages/react-native-codegen/scripts/oss/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-codegen/scripts/oss/build.sh -------------------------------------------------------------------------------- /packages/react-native-codegen/src/CodegenSchema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-codegen/src/CodegenSchema.d.ts -------------------------------------------------------------------------------- /packages/react-native-codegen/src/CodegenSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-codegen/src/CodegenSchema.js -------------------------------------------------------------------------------- /packages/react-native-codegen/src/SchemaValidator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-codegen/src/SchemaValidator.d.ts -------------------------------------------------------------------------------- /packages/react-native-codegen/src/SchemaValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-codegen/src/SchemaValidator.js -------------------------------------------------------------------------------- /packages/react-native-codegen/src/cli/parser/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-codegen/src/cli/parser/parser.js -------------------------------------------------------------------------------- /packages/react-native-codegen/src/cli/parser/parser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-codegen/src/cli/parser/parser.sh -------------------------------------------------------------------------------- /packages/react-native-codegen/src/generators/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-codegen/src/generators/Utils.js -------------------------------------------------------------------------------- /packages/react-native-codegen/src/parsers/errors.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-codegen/src/parsers/errors.d.ts -------------------------------------------------------------------------------- /packages/react-native-codegen/src/parsers/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-codegen/src/parsers/errors.js -------------------------------------------------------------------------------- /packages/react-native-codegen/src/parsers/parser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-codegen/src/parsers/parser.d.ts -------------------------------------------------------------------------------- /packages/react-native-codegen/src/parsers/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-codegen/src/parsers/parser.js -------------------------------------------------------------------------------- /packages/react-native-codegen/src/parsers/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-codegen/src/parsers/schema.js -------------------------------------------------------------------------------- /packages/react-native-codegen/src/parsers/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-codegen/src/parsers/utils.js -------------------------------------------------------------------------------- /packages/react-native-gradle-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-gradle-plugin/README.md -------------------------------------------------------------------------------- /packages/react-native-gradle-plugin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-gradle-plugin/build.gradle.kts -------------------------------------------------------------------------------- /packages/react-native-gradle-plugin/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.caching=true 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native-gradle-plugin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-gradle-plugin/gradlew -------------------------------------------------------------------------------- /packages/react-native-gradle-plugin/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-gradle-plugin/gradlew.bat -------------------------------------------------------------------------------- /packages/react-native-gradle-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native-gradle-plugin/package.json -------------------------------------------------------------------------------- /packages/react-native/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/LICENSE -------------------------------------------------------------------------------- /packages/react-native/Libraries/.npmignore: -------------------------------------------------------------------------------- 1 | __tests__ 2 | -------------------------------------------------------------------------------- /packages/react-native/Libraries/Alert/Alert.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Alert/Alert.d.ts -------------------------------------------------------------------------------- /packages/react-native/Libraries/Alert/Alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Alert/Alert.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Animated/Animated.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Animated/Animated.d.ts -------------------------------------------------------------------------------- /packages/react-native/Libraries/Animated/Animated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Animated/Animated.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Animated/Easing.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Animated/Easing.d.ts -------------------------------------------------------------------------------- /packages/react-native/Libraries/Animated/Easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Animated/Easing.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Animated/bezier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Animated/bezier.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/AppState/AppState.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/AppState/AppState.d.ts -------------------------------------------------------------------------------- /packages/react-native/Libraries/AppState/AppState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/AppState/AppState.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Blob/Blob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Blob/Blob.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Blob/BlobManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Blob/BlobManager.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Blob/BlobRegistry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Blob/BlobRegistry.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Blob/BlobTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Blob/BlobTypes.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Blob/File.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Blob/File.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Blob/FileReader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Blob/FileReader.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Blob/RCTBlobManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Blob/RCTBlobManager.h -------------------------------------------------------------------------------- /packages/react-native/Libraries/Blob/RCTBlobManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Blob/RCTBlobManager.mm -------------------------------------------------------------------------------- /packages/react-native/Libraries/Blob/RCTBlobPlugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Blob/RCTBlobPlugins.h -------------------------------------------------------------------------------- /packages/react-native/Libraries/Blob/RCTBlobPlugins.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Blob/RCTBlobPlugins.mm -------------------------------------------------------------------------------- /packages/react-native/Libraries/Blob/URL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Blob/URL.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Components/Button.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Components/Button.d.ts -------------------------------------------------------------------------------- /packages/react-native/Libraries/Components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Components/Button.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Core/ExtendedError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Core/ExtendedError.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Core/InitializeCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Core/InitializeCore.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Core/setUpAlert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Core/setUpAlert.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Core/setUpDOM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Core/setUpDOM.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Core/setUpGlobals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Core/setUpGlobals.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Core/setUpNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Core/setUpNavigator.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Core/setUpTimers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Core/setUpTimers.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Core/setUpXHR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Core/setUpXHR.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Events/CustomEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Events/CustomEvent.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Image/AssetRegistry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Image/AssetRegistry.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Image/AssetUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Image/AssetUtils.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Image/Image.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Image/Image.android.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Image/Image.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Image/Image.d.ts -------------------------------------------------------------------------------- /packages/react-native/Libraries/Image/Image.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Image/Image.ios.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Image/Image.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Image/Image.js.flow -------------------------------------------------------------------------------- /packages/react-native/Libraries/Image/ImageProps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Image/ImageProps.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Image/ImageSource.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Image/ImageSource.d.ts -------------------------------------------------------------------------------- /packages/react-native/Libraries/Image/ImageSource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Image/ImageSource.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Image/ImageUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Image/ImageUtils.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Image/RCTImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Image/RCTImageCache.h -------------------------------------------------------------------------------- /packages/react-native/Libraries/Image/RCTImageCache.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Image/RCTImageCache.mm -------------------------------------------------------------------------------- /packages/react-native/Libraries/Image/RCTImageLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Image/RCTImageLoader.h -------------------------------------------------------------------------------- /packages/react-native/Libraries/Image/RCTImageUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Image/RCTImageUtils.h -------------------------------------------------------------------------------- /packages/react-native/Libraries/Image/RCTImageUtils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Image/RCTImageUtils.mm -------------------------------------------------------------------------------- /packages/react-native/Libraries/Image/RCTImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Image/RCTImageView.h -------------------------------------------------------------------------------- /packages/react-native/Libraries/Image/RCTImageView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Image/RCTImageView.mm -------------------------------------------------------------------------------- /packages/react-native/Libraries/Image/RCTResizeMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Image/RCTResizeMode.h -------------------------------------------------------------------------------- /packages/react-native/Libraries/Image/RCTResizeMode.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Image/RCTResizeMode.mm -------------------------------------------------------------------------------- /packages/react-native/Libraries/Inspector/BorderBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Inspector/BorderBox.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Inspector/Inspector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Inspector/Inspector.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Linking/Linking.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Linking/Linking.d.ts -------------------------------------------------------------------------------- /packages/react-native/Libraries/Linking/Linking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Linking/Linking.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Lists/FlatList.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Lists/FlatList.d.ts -------------------------------------------------------------------------------- /packages/react-native/Libraries/Lists/FlatList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Lists/FlatList.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Lists/SectionList.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Lists/SectionList.d.ts -------------------------------------------------------------------------------- /packages/react-native/Libraries/Lists/SectionList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Lists/SectionList.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/LogBox/LogBox.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/LogBox/LogBox.d.ts -------------------------------------------------------------------------------- /packages/react-native/Libraries/LogBox/LogBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/LogBox/LogBox.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Modal/Modal.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Modal/Modal.d.ts -------------------------------------------------------------------------------- /packages/react-native/Libraries/Modal/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Modal/Modal.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Network/FormData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Network/FormData.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Network/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Network/fetch.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/NewAppScreen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/NewAppScreen/index.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Promise.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/ReactNative/RootTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/ReactNative/RootTag.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/ReactPrivate/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/ReactPrivate/README -------------------------------------------------------------------------------- /packages/react-native/Libraries/Renderer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Renderer/README.md -------------------------------------------------------------------------------- /packages/react-native/Libraries/Required/RCTRequired.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Required/RCTRequired.h -------------------------------------------------------------------------------- /packages/react-native/Libraries/Settings/Settings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Settings/Settings.d.ts -------------------------------------------------------------------------------- /packages/react-native/Libraries/Settings/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Settings/Settings.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Share/Share.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Share/Share.d.ts -------------------------------------------------------------------------------- /packages/react-native/Libraries/Share/Share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Share/Share.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/StyleSheet/Rect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/StyleSheet/Rect.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Text/RCTConvert+Text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Text/RCTConvert+Text.h -------------------------------------------------------------------------------- /packages/react-native/Libraries/Text/Text.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Text/Text.d.ts -------------------------------------------------------------------------------- /packages/react-native/Libraries/Text/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Text/Text.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Text/TextAncestor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Text/TextAncestor.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Text/TextProps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Text/TextProps.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Types/CodegenTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Types/CodegenTypes.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Types/RootTagTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Types/RootTagTypes.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/UTFSequence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/UTFSequence.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Utilities/HMRClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Utilities/HMRClient.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Utilities/RCTLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Utilities/RCTLog.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Utilities/infoLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Utilities/infoLog.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Utilities/logError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Utilities/logError.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Utilities/warnOnce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Utilities/warnOnce.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Vibration/Vibration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Vibration/Vibration.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/WebSocket/WebSocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/WebSocket/WebSocket.js -------------------------------------------------------------------------------- /packages/react-native/Libraries/Wrapper/RCTWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/Libraries/Wrapper/RCTWrapper.h -------------------------------------------------------------------------------- /packages/react-native/React-Core.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React-Core.podspec -------------------------------------------------------------------------------- /packages/react-native/React.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React.podspec -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTAssert.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTAssert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTAssert.m -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTBridge+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTBridge+Private.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTBridge.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTBridge.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTBridge.mm -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTBridgeConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTBridgeConstants.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTBridgeConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTBridgeConstants.m -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTBridgeDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTBridgeDelegate.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTBridgeMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTBridgeMethod.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTBridgeModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTBridgeModule.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTBridgeProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTBridgeProxy.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTBridgeProxy.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTBridgeProxy.mm -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTBundleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTBundleManager.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTBundleManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTBundleManager.m -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTComponentEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTComponentEvent.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTComponentEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTComponentEvent.m -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTConstants.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTConstants.m -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTConvert.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTConvert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTConvert.m -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTCxxConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTCxxConvert.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTCxxConvert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTCxxConvert.m -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTDefines.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTDisplayLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTDisplayLink.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTDisplayLink.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTDisplayLink.m -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTErrorCustomizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTErrorCustomizer.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTErrorInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTErrorInfo.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTErrorInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTErrorInfo.m -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTEventDispatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTEventDispatcher.m -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTFrameUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTFrameUpdate.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTFrameUpdate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTFrameUpdate.m -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTImageSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTImageSource.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTImageSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTImageSource.m -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTInitializing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTInitializing.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTInvalidating.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTInvalidating.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTJSStackFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTJSStackFrame.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTJSStackFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTJSStackFrame.m -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTJSThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTJSThread.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTJSThread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTJSThread.m -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTJavaScriptLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTJavaScriptLoader.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTKeyCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTKeyCommands.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTKeyCommands.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTKeyCommands.m -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTLog.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTLog.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTLog.mm -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTManagedPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTManagedPointer.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTManagedPointer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTManagedPointer.mm -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTMockDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTMockDef.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTModuleData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTModuleData.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTModuleData.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTModuleData.mm -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTModuleMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTModuleMethod.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTModuleMethod.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTModuleMethod.mm -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTModuleRegistry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTModuleRegistry.m -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTNullability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTNullability.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTPLTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTPLTag.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTParserUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTParserUtils.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTParserUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTParserUtils.m -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTRedBoxSetEnabled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTRedBoxSetEnabled.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTRedBoxSetEnabled.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTRedBoxSetEnabled.m -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTReloadCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTReloadCommand.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTReloadCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTReloadCommand.m -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTRootContentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTRootContentView.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTRootContentView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTRootContentView.m -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTRootView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTRootView.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTRootView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTRootView.m -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTRootViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTRootViewDelegate.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTRootViewInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTRootViewInternal.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTTouchEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTTouchEvent.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTTouchEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTTouchEvent.m -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTTouchHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTTouchHandler.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTTouchHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTTouchHandler.m -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTUtils.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTUtils.m -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTUtilsUIOverride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTUtilsUIOverride.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTUtilsUIOverride.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTUtilsUIOverride.m -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTVersion.h -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTVersion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTVersion.m -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTViewRegistry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/RCTViewRegistry.m -------------------------------------------------------------------------------- /packages/react-native/React/Base/Surface/RCTSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Base/Surface/RCTSurface.h -------------------------------------------------------------------------------- /packages/react-native/React/CoreModules/RCTLogBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/CoreModules/RCTLogBox.h -------------------------------------------------------------------------------- /packages/react-native/React/CoreModules/RCTRedBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/CoreModules/RCTRedBox.h -------------------------------------------------------------------------------- /packages/react-native/React/CoreModules/RCTTiming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/CoreModules/RCTTiming.h -------------------------------------------------------------------------------- /packages/react-native/React/CxxModule/RCTCxxUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/CxxModule/RCTCxxUtils.h -------------------------------------------------------------------------------- /packages/react-native/React/Fabric/RCTConversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Fabric/RCTConversions.h -------------------------------------------------------------------------------- /packages/react-native/React/Fabric/RCTPrimitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Fabric/RCTPrimitives.h -------------------------------------------------------------------------------- /packages/react-native/React/Fabric/RCTScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Fabric/RCTScheduler.h -------------------------------------------------------------------------------- /packages/react-native/React/Fabric/RCTScheduler.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Fabric/RCTScheduler.mm -------------------------------------------------------------------------------- /packages/react-native/React/I18n/.clang-format-ignore: -------------------------------------------------------------------------------- 1 | # Synced externally 2 | FBXXHashUtils.h 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/FBXXHashUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/I18n/FBXXHashUtils.h -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/en-GB.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/es-ES.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/hi.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/hr.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/ms.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/nb.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/pt-PT.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/ro.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/sk.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/th.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/zh-Hant-HK.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/zu.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/Modules/RCTI18nUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Modules/RCTI18nUtil.h -------------------------------------------------------------------------------- /packages/react-native/React/Modules/RCTI18nUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Modules/RCTI18nUtil.m -------------------------------------------------------------------------------- /packages/react-native/React/Modules/RCTUIManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Modules/RCTUIManager.h -------------------------------------------------------------------------------- /packages/react-native/React/Modules/RCTUIManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Modules/RCTUIManager.m -------------------------------------------------------------------------------- /packages/react-native/React/Profiler/RCTMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Profiler/RCTMacros.h -------------------------------------------------------------------------------- /packages/react-native/React/Profiler/RCTProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Profiler/RCTProfile.h -------------------------------------------------------------------------------- /packages/react-native/React/Profiler/RCTProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Profiler/RCTProfile.m -------------------------------------------------------------------------------- /packages/react-native/React/React-RCTFabric.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/React-RCTFabric.podspec -------------------------------------------------------------------------------- /packages/react-native/React/UIUtils/RCTUIUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/UIUtils/RCTUIUtils.h -------------------------------------------------------------------------------- /packages/react-native/React/UIUtils/RCTUIUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/UIUtils/RCTUIUtils.m -------------------------------------------------------------------------------- /packages/react-native/React/Views/RCTBorderCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Views/RCTBorderCurve.h -------------------------------------------------------------------------------- /packages/react-native/React/Views/RCTBorderStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Views/RCTBorderStyle.h -------------------------------------------------------------------------------- /packages/react-native/React/Views/RCTComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Views/RCTComponent.h -------------------------------------------------------------------------------- /packages/react-native/React/Views/RCTFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Views/RCTFont.h -------------------------------------------------------------------------------- /packages/react-native/React/Views/RCTFont.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Views/RCTFont.mm -------------------------------------------------------------------------------- /packages/react-native/React/Views/RCTLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Views/RCTLayout.h -------------------------------------------------------------------------------- /packages/react-native/React/Views/RCTLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Views/RCTLayout.m -------------------------------------------------------------------------------- /packages/react-native/React/Views/RCTModalManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Views/RCTModalManager.h -------------------------------------------------------------------------------- /packages/react-native/React/Views/RCTModalManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Views/RCTModalManager.m -------------------------------------------------------------------------------- /packages/react-native/React/Views/RCTShadowView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Views/RCTShadowView.h -------------------------------------------------------------------------------- /packages/react-native/React/Views/RCTShadowView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Views/RCTShadowView.m -------------------------------------------------------------------------------- /packages/react-native/React/Views/RCTSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Views/RCTSwitch.h -------------------------------------------------------------------------------- /packages/react-native/React/Views/RCTSwitch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Views/RCTSwitch.m -------------------------------------------------------------------------------- /packages/react-native/React/Views/RCTView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Views/RCTView.h -------------------------------------------------------------------------------- /packages/react-native/React/Views/RCTView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Views/RCTView.m -------------------------------------------------------------------------------- /packages/react-native/React/Views/RCTViewManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Views/RCTViewManager.h -------------------------------------------------------------------------------- /packages/react-native/React/Views/RCTViewManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Views/RCTViewManager.m -------------------------------------------------------------------------------- /packages/react-native/React/Views/RCTViewUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Views/RCTViewUtils.h -------------------------------------------------------------------------------- /packages/react-native/React/Views/RCTViewUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Views/RCTViewUtils.m -------------------------------------------------------------------------------- /packages/react-native/React/Views/UIView+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Views/UIView+Private.h -------------------------------------------------------------------------------- /packages/react-native/React/Views/UIView+React.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Views/UIView+React.h -------------------------------------------------------------------------------- /packages/react-native/React/Views/UIView+React.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/Views/UIView+React.m -------------------------------------------------------------------------------- /packages/react-native/React/third-party.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/React/third-party.xcconfig -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/ReactAndroid/.npmignore -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/ReactAndroid/README.md -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/ReactAndroid/build.gradle.kts -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/hermes-engine/gradle.properties: -------------------------------------------------------------------------------- 1 | android.disableAutomaticComponentCreation=true 2 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/publish.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/ReactAndroid/publish.gradle -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/jni/first-party/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/jni/first-party/yogajni/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | ... 6 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/jni/react/hermes/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | InheritParentConfig: true 3 | Checks: '> 4 | clang-diagnostic-*, 5 | ' 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/jni/react/jni/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/jni/react/mapbuffer/react/common/mapbuffer/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | InheritParentConfig: true 3 | ... 4 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker: -------------------------------------------------------------------------------- 1 | mock-maker-inline 2 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/test/resources/robolectric.properties: -------------------------------------------------------------------------------- 1 | # Set this to minimum supported API level for React Native. 2 | sdk=33 3 | -------------------------------------------------------------------------------- /packages/react-native/ReactApple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/ReactApple/README.md -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/ReactCommon/.clang-tidy -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/butter/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | InheritParentConfig: true 3 | Checks: '> 4 | clang-diagnostic-*, 5 | ' 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/butter/butter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/ReactCommon/butter/butter.h -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/butter/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/ReactCommon/butter/map.h -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/callinvoker/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/cxxreact/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/hermes/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/jsc/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/jsc/JSCRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/ReactCommon/jsc/JSCRuntime.h -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/jsengineinstance/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/jsi/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/jsi/jsi/jsi-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/ReactCommon/jsi/jsi/jsi-inl.h -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/jsi/jsi/jsi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/ReactCommon/jsi/jsi/jsi.cpp -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/jsi/jsi/jsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/ReactCommon/jsi/jsi/jsi.h -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/jsi/jsi/jsilib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/ReactCommon/jsi/jsi/jsilib.h -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/jsiexecutor/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/jsinspector-modern/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/react/config/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/react/nativemodule/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/react/utils/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/reactperflogger/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/runtimeexecutor/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/yoga/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | ... 6 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/yoga/Yoga.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/ReactCommon/yoga/Yoga.podspec -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/yoga/yoga/Yoga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/ReactCommon/yoga/yoga/Yoga.h -------------------------------------------------------------------------------- /packages/react-native/android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/android/README.md -------------------------------------------------------------------------------- /packages/react-native/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/build.gradle.kts -------------------------------------------------------------------------------- /packages/react-native/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/cli.js -------------------------------------------------------------------------------- /packages/react-native/flow/HermesInternalType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/flow/HermesInternalType.js -------------------------------------------------------------------------------- /packages/react-native/flow/Position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/flow/Position.js -------------------------------------------------------------------------------- /packages/react-native/flow/Stringish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/flow/Stringish.js -------------------------------------------------------------------------------- /packages/react-native/flow/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/flow/console.js -------------------------------------------------------------------------------- /packages/react-native/flow/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/flow/global.js -------------------------------------------------------------------------------- /packages/react-native/flow/jest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/flow/jest.js -------------------------------------------------------------------------------- /packages/react-native/flow/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/flow/react.js -------------------------------------------------------------------------------- /packages/react-native/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/gradle.properties -------------------------------------------------------------------------------- /packages/react-native/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/gradle/libs.versions.toml -------------------------------------------------------------------------------- /packages/react-native/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/index.js -------------------------------------------------------------------------------- /packages/react-native/interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/interface.js -------------------------------------------------------------------------------- /packages/react-native/jest-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/jest-preset.js -------------------------------------------------------------------------------- /packages/react-native/jest/MockNativeMethods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/jest/MockNativeMethods.js -------------------------------------------------------------------------------- /packages/react-native/jest/__tests__/setup-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/jest/__tests__/setup-test.js -------------------------------------------------------------------------------- /packages/react-native/jest/assetFileTransformer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/jest/assetFileTransformer.js -------------------------------------------------------------------------------- /packages/react-native/jest/local-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/jest/local-setup.js -------------------------------------------------------------------------------- /packages/react-native/jest/mockComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/jest/mockComponent.js -------------------------------------------------------------------------------- /packages/react-native/jest/mockModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/jest/mockModal.js -------------------------------------------------------------------------------- /packages/react-native/jest/mockNativeComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/jest/mockNativeComponent.js -------------------------------------------------------------------------------- /packages/react-native/jest/mockScrollView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/jest/mockScrollView.js -------------------------------------------------------------------------------- /packages/react-native/jest/react-native-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/jest/react-native-env.js -------------------------------------------------------------------------------- /packages/react-native/jest/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/jest/renderer.js -------------------------------------------------------------------------------- /packages/react-native/jest/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/jest/setup.js -------------------------------------------------------------------------------- /packages/react-native/local-cli/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/local-cli/cli.js -------------------------------------------------------------------------------- /packages/react-native/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/metro.config.js -------------------------------------------------------------------------------- /packages/react-native/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/package.json -------------------------------------------------------------------------------- /packages/react-native/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/react-native.config.js -------------------------------------------------------------------------------- /packages/react-native/rn-get-polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/rn-get-polyfills.js -------------------------------------------------------------------------------- /packages/react-native/scripts/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/scripts/.npmignore -------------------------------------------------------------------------------- /packages/react-native/scripts/cocoapods/codegen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/scripts/cocoapods/codegen.rb -------------------------------------------------------------------------------- /packages/react-native/scripts/cocoapods/fabric.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/scripts/cocoapods/fabric.rb -------------------------------------------------------------------------------- /packages/react-native/scripts/cocoapods/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/scripts/cocoapods/helpers.rb -------------------------------------------------------------------------------- /packages/react-native/scripts/cocoapods/jsengine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/scripts/cocoapods/jsengine.rb -------------------------------------------------------------------------------- /packages/react-native/scripts/cocoapods/runtime.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/scripts/cocoapods/runtime.rb -------------------------------------------------------------------------------- /packages/react-native/scripts/cocoapods/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/scripts/cocoapods/utils.rb -------------------------------------------------------------------------------- /packages/react-native/scripts/generate-specs-cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/scripts/generate-specs-cli.js -------------------------------------------------------------------------------- /packages/react-native/scripts/ios-configure-glog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/scripts/ios-configure-glog.sh -------------------------------------------------------------------------------- /packages/react-native/scripts/native_modules.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/scripts/native_modules.rb -------------------------------------------------------------------------------- /packages/react-native/scripts/node-binary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/scripts/node-binary.sh -------------------------------------------------------------------------------- /packages/react-native/scripts/packager-reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/scripts/packager-reporter.js -------------------------------------------------------------------------------- /packages/react-native/scripts/packager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/scripts/packager.sh -------------------------------------------------------------------------------- /packages/react-native/scripts/react-native-xcode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/scripts/react-native-xcode.sh -------------------------------------------------------------------------------- /packages/react-native/scripts/react_native_pods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/scripts/react_native_pods.rb -------------------------------------------------------------------------------- /packages/react-native/scripts/run_ruby_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/scripts/run_ruby_tests.sh -------------------------------------------------------------------------------- /packages/react-native/scripts/xcode/ccache-clang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/scripts/xcode/ccache-clang.sh -------------------------------------------------------------------------------- /packages/react-native/scripts/xcode/ccache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/scripts/xcode/ccache.conf -------------------------------------------------------------------------------- /packages/react-native/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/settings.gradle.kts -------------------------------------------------------------------------------- /packages/react-native/template.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/template.config.js -------------------------------------------------------------------------------- /packages/react-native/template/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/template/App.tsx -------------------------------------------------------------------------------- /packages/react-native/template/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/template/Gemfile -------------------------------------------------------------------------------- /packages/react-native/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/template/README.md -------------------------------------------------------------------------------- /packages/react-native/template/_bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/template/_bundle/config -------------------------------------------------------------------------------- /packages/react-native/template/_eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /packages/react-native/template/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/template/_gitignore -------------------------------------------------------------------------------- /packages/react-native/template/_prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/template/_prettierrc.js -------------------------------------------------------------------------------- /packages/react-native/template/_watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /packages/react-native/template/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/template/android/build.gradle -------------------------------------------------------------------------------- /packages/react-native/template/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/template/android/gradlew -------------------------------------------------------------------------------- /packages/react-native/template/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/template/android/gradlew.bat -------------------------------------------------------------------------------- /packages/react-native/template/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/template/app.json -------------------------------------------------------------------------------- /packages/react-native/template/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/template/babel.config.js -------------------------------------------------------------------------------- /packages/react-native/template/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/template/index.js -------------------------------------------------------------------------------- /packages/react-native/template/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/template/ios/Podfile -------------------------------------------------------------------------------- /packages/react-native/template/ios/_xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/template/ios/_xcode.env -------------------------------------------------------------------------------- /packages/react-native/template/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /packages/react-native/template/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/template/metro.config.js -------------------------------------------------------------------------------- /packages/react-native/template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/template/package.json -------------------------------------------------------------------------------- /packages/react-native/template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/template/tsconfig.json -------------------------------------------------------------------------------- /packages/react-native/types/.npmignore: -------------------------------------------------------------------------------- 1 | __typetests__ 2 | -------------------------------------------------------------------------------- /packages/react-native/types/__typetests__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/types/__typetests__/index.tsx -------------------------------------------------------------------------------- /packages/react-native/types/experimental.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/types/experimental.d.ts -------------------------------------------------------------------------------- /packages/react-native/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/types/index.d.ts -------------------------------------------------------------------------------- /packages/react-native/types/modules/Codegen.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/types/modules/Codegen.d.ts -------------------------------------------------------------------------------- /packages/react-native/types/modules/Devtools.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/types/modules/Devtools.d.ts -------------------------------------------------------------------------------- /packages/react-native/types/modules/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/types/modules/globals.d.ts -------------------------------------------------------------------------------- /packages/react-native/types/private/TimerMixin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/types/private/TimerMixin.d.ts -------------------------------------------------------------------------------- /packages/react-native/types/private/Utilities.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/types/private/Utilities.d.ts -------------------------------------------------------------------------------- /packages/react-native/types/public/Insets.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/types/public/Insets.d.ts -------------------------------------------------------------------------------- /packages/react-native/types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/types/tsconfig.json -------------------------------------------------------------------------------- /packages/react-native/types/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/react-native/types/tslint.json -------------------------------------------------------------------------------- /packages/rn-tester-e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester-e2e/README.md -------------------------------------------------------------------------------- /packages/rn-tester-e2e/apps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester-e2e/apps/README.md -------------------------------------------------------------------------------- /packages/rn-tester-e2e/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester-e2e/babel.config.js -------------------------------------------------------------------------------- /packages/rn-tester-e2e/e2e-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester-e2e/e2e-config.js -------------------------------------------------------------------------------- /packages/rn-tester-e2e/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester-e2e/jest.config.js -------------------------------------------------------------------------------- /packages/rn-tester-e2e/jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester-e2e/jest.setup.js -------------------------------------------------------------------------------- /packages/rn-tester-e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester-e2e/package.json -------------------------------------------------------------------------------- /packages/rn-tester-e2e/tests/helpers/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester-e2e/tests/helpers/utils.js -------------------------------------------------------------------------------- /packages/rn-tester-e2e/tests/screens/apis.screen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester-e2e/tests/screens/apis.screen.js -------------------------------------------------------------------------------- /packages/rn-tester/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/.babelrc -------------------------------------------------------------------------------- /packages/rn-tester/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/.eslintrc -------------------------------------------------------------------------------- /packages/rn-tester/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/.xcode.env -------------------------------------------------------------------------------- /packages/rn-tester/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/Gemfile -------------------------------------------------------------------------------- /packages/rn-tester/IntegrationTests/PromiseTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/IntegrationTests/PromiseTest.js -------------------------------------------------------------------------------- /packages/rn-tester/IntegrationTests/TimersTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/IntegrationTests/TimersTest.js -------------------------------------------------------------------------------- /packages/rn-tester/IntegrationTests/blue_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/IntegrationTests/blue_square.png -------------------------------------------------------------------------------- /packages/rn-tester/IntegrationTests/red_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/IntegrationTests/red_square.png -------------------------------------------------------------------------------- /packages/rn-tester/NativeModuleExample/Screenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/NativeModuleExample/Screenshot.h -------------------------------------------------------------------------------- /packages/rn-tester/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/Podfile -------------------------------------------------------------------------------- /packages/rn-tester/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/Podfile.lock -------------------------------------------------------------------------------- /packages/rn-tester/RCTTest/RCTSnapshotManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/RCTTest/RCTSnapshotManager.h -------------------------------------------------------------------------------- /packages/rn-tester/RCTTest/RCTSnapshotManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/RCTTest/RCTSnapshotManager.m -------------------------------------------------------------------------------- /packages/rn-tester/RCTTest/RCTTestModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/RCTTest/RCTTestModule.h -------------------------------------------------------------------------------- /packages/rn-tester/RCTTest/RCTTestModule.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/RCTTest/RCTTestModule.mm -------------------------------------------------------------------------------- /packages/rn-tester/RCTTest/RCTTestPlugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/RCTTest/RCTTestPlugins.h -------------------------------------------------------------------------------- /packages/rn-tester/RCTTest/RCTTestPlugins.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/RCTTest/RCTTestPlugins.mm -------------------------------------------------------------------------------- /packages/rn-tester/RCTTest/RCTTestRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/RCTTest/RCTTestRunner.h -------------------------------------------------------------------------------- /packages/rn-tester/RCTTest/RCTTestRunner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/RCTTest/RCTTestRunner.m -------------------------------------------------------------------------------- /packages/rn-tester/RCTTest/React-RCTTest.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/RCTTest/React-RCTTest.podspec -------------------------------------------------------------------------------- /packages/rn-tester/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/README.md -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/RNTester/AppDelegate.h -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/RNTester/AppDelegate.mm -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/RNTester/Info.plist -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/RNTester/LaunchScreen.storyboard -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/RNTester.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/RNTester/RNTester.xctestplan -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/SwiftTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/RNTester/SwiftTest.swift -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/legacy_image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/RNTester/legacy_image@2x.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/RNTester/main.m -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterUnitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/RNTesterUnitTests/Info.plist -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterUnitTests/RCTFontTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/RNTesterUnitTests/RCTFontTests.m -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterUnitTests/RCTGzipTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/RNTesterUnitTests/RCTGzipTests.m -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterUnitTests/RCTJSONTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/RNTesterUnitTests/RCTJSONTests.m -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterUnitTests/RCTViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/RNTesterUnitTests/RCTViewTests.m -------------------------------------------------------------------------------- /packages/rn-tester/android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/android/app/build.gradle.kts -------------------------------------------------------------------------------- /packages/rn-tester/android/app/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/android/app/gradle.properties -------------------------------------------------------------------------------- /packages/rn-tester/js/RNTesterApp.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/RNTesterApp.android.js -------------------------------------------------------------------------------- /packages/rn-tester/js/RNTesterApp.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/RNTesterApp.ios.js -------------------------------------------------------------------------------- /packages/rn-tester/js/RNTesterApp.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/RNTesterApp.js.flow -------------------------------------------------------------------------------- /packages/rn-tester/js/RNTesterAppShared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/RNTesterAppShared.js -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/bandaged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/assets/bandaged.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/bunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/assets/bunny.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/assets/call.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/dislike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/assets/dislike.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/documentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/assets/documentation.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/assets/empty.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/fist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/assets/fist.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/flowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/assets/flowers.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/flux@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/assets/flux@3x.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/hawk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/assets/hawk.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/header-back-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/assets/header-back-button.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/assets/heart.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/helloworld.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/assets/helloworld.html -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/imageMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/assets/imageMask.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/assets/like.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/liking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/assets/liking.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/messagingtest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/assets/messagingtest.html -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/assets/party.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/poke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/assets/poke.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/relay@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/assets/relay@3x.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/assets/search-icon.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/superlike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/assets/superlike.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/trees.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/assets/trees.jpg -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/uie_thumb_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/assets/uie_thumb_big.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/victory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/assets/victory.png -------------------------------------------------------------------------------- /packages/rn-tester/js/components/RNTOption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/components/RNTOption.js -------------------------------------------------------------------------------- /packages/rn-tester/js/components/RNTPressableRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/components/RNTPressableRow.js -------------------------------------------------------------------------------- /packages/rn-tester/js/components/RNTTestDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/components/RNTTestDetails.js -------------------------------------------------------------------------------- /packages/rn-tester/js/components/RNTTitleBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/components/RNTTitleBar.js -------------------------------------------------------------------------------- /packages/rn-tester/js/components/RNTesterBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/components/RNTesterBlock.js -------------------------------------------------------------------------------- /packages/rn-tester/js/components/RNTesterButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/components/RNTesterButton.js -------------------------------------------------------------------------------- /packages/rn-tester/js/components/RNTesterNavbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/components/RNTesterNavbar.js -------------------------------------------------------------------------------- /packages/rn-tester/js/components/RNTesterPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/components/RNTesterPage.js -------------------------------------------------------------------------------- /packages/rn-tester/js/components/RNTesterTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/components/RNTesterTheme.js -------------------------------------------------------------------------------- /packages/rn-tester/js/components/RNTesterTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/components/RNTesterTitle.js -------------------------------------------------------------------------------- /packages/rn-tester/js/components/TextInlineView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/components/TextInlineView.js -------------------------------------------------------------------------------- /packages/rn-tester/js/components/TextLegend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/components/TextLegend.js -------------------------------------------------------------------------------- /packages/rn-tester/js/components/UseCase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/components/UseCase.js -------------------------------------------------------------------------------- /packages/rn-tester/js/examples/Modal/ModalOnShow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/examples/Modal/ModalOnShow.js -------------------------------------------------------------------------------- /packages/rn-tester/js/examples/RTL/RTLExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/examples/RTL/RTLExample.js -------------------------------------------------------------------------------- /packages/rn-tester/js/examples/View/ViewExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/examples/View/ViewExample.js -------------------------------------------------------------------------------- /packages/rn-tester/js/examples/XHR/XHRExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/examples/XHR/XHRExample.js -------------------------------------------------------------------------------- /packages/rn-tester/js/types/RNTesterTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/types/RNTesterTypes.js -------------------------------------------------------------------------------- /packages/rn-tester/js/utils/RNTesterList.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/utils/RNTesterList.android.js -------------------------------------------------------------------------------- /packages/rn-tester/js/utils/RNTesterList.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/utils/RNTesterList.ios.js -------------------------------------------------------------------------------- /packages/rn-tester/js/utils/RNTesterList.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/utils/RNTesterList.js.flow -------------------------------------------------------------------------------- /packages/rn-tester/js/utils/testerStateUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/utils/testerStateUtils.js -------------------------------------------------------------------------------- /packages/rn-tester/js/utils/useJsStalls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/js/utils/useJsStalls.js -------------------------------------------------------------------------------- /packages/rn-tester/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/metro.config.js -------------------------------------------------------------------------------- /packages/rn-tester/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/package.json -------------------------------------------------------------------------------- /packages/rn-tester/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/rn-tester/react-native.config.js -------------------------------------------------------------------------------- /packages/typescript-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/typescript-config/README.md -------------------------------------------------------------------------------- /packages/typescript-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/typescript-config/package.json -------------------------------------------------------------------------------- /packages/typescript-config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/typescript-config/tsconfig.json -------------------------------------------------------------------------------- /packages/virtualized-lists/.npmignore: -------------------------------------------------------------------------------- 1 | __tests__ 2 | -------------------------------------------------------------------------------- /packages/virtualized-lists/Lists/CellRenderMask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/virtualized-lists/Lists/CellRenderMask.js -------------------------------------------------------------------------------- /packages/virtualized-lists/Lists/FillRateHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/virtualized-lists/Lists/FillRateHelper.js -------------------------------------------------------------------------------- /packages/virtualized-lists/Lists/VirtualizeUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/virtualized-lists/Lists/VirtualizeUtils.js -------------------------------------------------------------------------------- /packages/virtualized-lists/Lists/VirtualizedList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/virtualized-lists/Lists/VirtualizedList.js -------------------------------------------------------------------------------- /packages/virtualized-lists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/virtualized-lists/README.md -------------------------------------------------------------------------------- /packages/virtualized-lists/Utilities/clamp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/virtualized-lists/Utilities/clamp.js -------------------------------------------------------------------------------- /packages/virtualized-lists/Utilities/infoLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/virtualized-lists/Utilities/infoLog.js -------------------------------------------------------------------------------- /packages/virtualized-lists/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/virtualized-lists/index.d.ts -------------------------------------------------------------------------------- /packages/virtualized-lists/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/virtualized-lists/index.js -------------------------------------------------------------------------------- /packages/virtualized-lists/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/packages/virtualized-lists/package.json -------------------------------------------------------------------------------- /runXcodeTests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/runXcodeTests.sh -------------------------------------------------------------------------------- /scripts/.tests.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/.tests.env -------------------------------------------------------------------------------- /scripts/__tests__/npm-utils-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/__tests__/npm-utils-test.js -------------------------------------------------------------------------------- /scripts/__tests__/publish-npm-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/__tests__/publish-npm-test.js -------------------------------------------------------------------------------- /scripts/__tests__/scm-utils-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/__tests__/scm-utils-test.js -------------------------------------------------------------------------------- /scripts/__tests__/set-rn-version-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/__tests__/set-rn-version-test.js -------------------------------------------------------------------------------- /scripts/__tests__/version-utils-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/__tests__/version-utils-test.js -------------------------------------------------------------------------------- /scripts/android-e2e-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/android-e2e-test.js -------------------------------------------------------------------------------- /scripts/android-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/android-setup.sh -------------------------------------------------------------------------------- /scripts/build/babel-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/build/babel-register.js -------------------------------------------------------------------------------- /scripts/build/babel/node.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/build/babel/node.config.js -------------------------------------------------------------------------------- /scripts/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/build/build.js -------------------------------------------------------------------------------- /scripts/build/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/build/clean.js -------------------------------------------------------------------------------- /scripts/build/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/build/config.js -------------------------------------------------------------------------------- /scripts/circle-ci-artifacts-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/circle-ci-artifacts-utils.js -------------------------------------------------------------------------------- /scripts/circleci/analyze_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/circleci/analyze_code.sh -------------------------------------------------------------------------------- /scripts/circleci/analyze_scripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/circleci/analyze_scripts.sh -------------------------------------------------------------------------------- /scripts/circleci/apt-get-android-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/circleci/apt-get-android-deps.sh -------------------------------------------------------------------------------- /scripts/circleci/check_appium_server_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/circleci/check_appium_server_status.sh -------------------------------------------------------------------------------- /scripts/circleci/check_license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/circleci/check_license.sh -------------------------------------------------------------------------------- /scripts/circleci/exec_swallow_error.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/circleci/exec_swallow_error.sh -------------------------------------------------------------------------------- /scripts/circleci/pipeline_selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/circleci/pipeline_selection.js -------------------------------------------------------------------------------- /scripts/circleci/poll-maven.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/circleci/poll-maven.js -------------------------------------------------------------------------------- /scripts/circleci/report-bundle-size.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/circleci/report-bundle-size.sh -------------------------------------------------------------------------------- /scripts/circleci/retry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/circleci/retry.js -------------------------------------------------------------------------------- /scripts/circleci/run_with_retry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/circleci/run_with_retry.js -------------------------------------------------------------------------------- /scripts/circleci/validate_yarn_lockfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/circleci/validate_yarn_lockfile.sh -------------------------------------------------------------------------------- /scripts/debugger-frontend/sync-and-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/debugger-frontend/sync-and-build.js -------------------------------------------------------------------------------- /scripts/e2e/run-e2e-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/e2e/run-e2e-tests.js -------------------------------------------------------------------------------- /scripts/lint-java.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/lint-java.js -------------------------------------------------------------------------------- /scripts/monorepo/__tests__/for-each-package-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/monorepo/__tests__/for-each-package-test.js -------------------------------------------------------------------------------- /scripts/monorepo/align-package-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/monorepo/align-package-versions.js -------------------------------------------------------------------------------- /scripts/monorepo/bump-all-updated-packages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/monorepo/bump-all-updated-packages/index.js -------------------------------------------------------------------------------- /scripts/monorepo/check-for-git-changes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/monorepo/check-for-git-changes.js -------------------------------------------------------------------------------- /scripts/monorepo/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/monorepo/constants.js -------------------------------------------------------------------------------- /scripts/monorepo/for-each-package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/monorepo/for-each-package.js -------------------------------------------------------------------------------- /scripts/monorepo/get-and-update-packages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/monorepo/get-and-update-packages.js -------------------------------------------------------------------------------- /scripts/monorepo/print/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/monorepo/print/index.js -------------------------------------------------------------------------------- /scripts/npm-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/npm-utils.js -------------------------------------------------------------------------------- /scripts/objc-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/objc-test.sh -------------------------------------------------------------------------------- /scripts/prepare-package-for-release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/prepare-package-for-release.js -------------------------------------------------------------------------------- /scripts/process-podspecs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/process-podspecs.sh -------------------------------------------------------------------------------- /scripts/publish-npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/publish-npm.js -------------------------------------------------------------------------------- /scripts/release-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/release-utils.js -------------------------------------------------------------------------------- /scripts/releases/remove-new-arch-flags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/releases/remove-new-arch-flags.js -------------------------------------------------------------------------------- /scripts/run-android-emulator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/run-android-emulator.sh -------------------------------------------------------------------------------- /scripts/run-android-local-unit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/run-android-local-unit-tests.sh -------------------------------------------------------------------------------- /scripts/run-ci-e2e-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/run-ci-e2e-tests.js -------------------------------------------------------------------------------- /scripts/run-ci-javascript-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/run-ci-javascript-tests.js -------------------------------------------------------------------------------- /scripts/run-instrumentation-tests-via-adb-shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/run-instrumentation-tests-via-adb-shell.sh -------------------------------------------------------------------------------- /scripts/scm-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/scm-utils.js -------------------------------------------------------------------------------- /scripts/set-rn-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/set-rn-version.js -------------------------------------------------------------------------------- /scripts/setup-verdaccio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/setup-verdaccio.js -------------------------------------------------------------------------------- /scripts/sync-css-layout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/sync-css-layout.sh -------------------------------------------------------------------------------- /scripts/template/initialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/template/initialize.js -------------------------------------------------------------------------------- /scripts/test-e2e-local-clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/test-e2e-local-clean.js -------------------------------------------------------------------------------- /scripts/test-e2e-local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/test-e2e-local.js -------------------------------------------------------------------------------- /scripts/testing-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/testing-utils.js -------------------------------------------------------------------------------- /scripts/trigger-react-native-release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/trigger-react-native-release.js -------------------------------------------------------------------------------- /scripts/try-n-times.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/try-n-times.js -------------------------------------------------------------------------------- /scripts/update-template-package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/update-template-package.js -------------------------------------------------------------------------------- /scripts/update_podfile_lock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/update_podfile_lock.sh -------------------------------------------------------------------------------- /scripts/validate-android-device-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/validate-android-device-env.sh -------------------------------------------------------------------------------- /scripts/validate-android-sdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/validate-android-sdk.sh -------------------------------------------------------------------------------- /scripts/validate-android-test-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/validate-android-test-env.sh -------------------------------------------------------------------------------- /scripts/validate-ios-test-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/validate-ios-test-env.sh -------------------------------------------------------------------------------- /scripts/version-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/version-utils.js -------------------------------------------------------------------------------- /scripts/versiontemplates/RCTVersion.m.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/scripts/versiontemplates/RCTVersion.m.template -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /tools/eslint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/tools/eslint/README.md -------------------------------------------------------------------------------- /tools/eslint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/tools/eslint/package.json -------------------------------------------------------------------------------- /tools/eslint/rules/no-haste-imports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/tools/eslint/rules/no-haste-imports.js -------------------------------------------------------------------------------- /tools/eslint/rules/no-react-native-imports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/tools/eslint/rules/no-react-native-imports.js -------------------------------------------------------------------------------- /tools/eslint/rules/react-native-manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/tools/eslint/rules/react-native-manifest.js -------------------------------------------------------------------------------- /tools/eslint/rules/require-extends-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/tools/eslint/rules/require-extends-error.js -------------------------------------------------------------------------------- /tools/eslint/rules/sort-imports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/tools/eslint/rules/sort-imports.js -------------------------------------------------------------------------------- /tools/eslint/rules/valid-flow-typed-signature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/tools/eslint/rules/valid-flow-typed-signature.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onestar0319/react-native/HEAD/yarn.lock --------------------------------------------------------------------------------