react-native
react-native copied to clipboard
A framework for building native applications using React
Summary: - This fix majority work is based off of hoxyq https://www.internalfb.com/diff/D56185630 Changelog: [Internal] `Expectation`: In React DevTools, user should be able to select an element on screen and it...
## Summary: TextInputs' `onTextInput` callback was removed way back in React Native 0.62 with https://github.com/facebook/react-native/commit/3f7e0a2c9601fc186f25bfd794cd0008ac3983ab , but remnants of the implementation exists. Let's just remove it altogether? ## Changelog: [IOS]...
Summary: Confirmed in https://github.com/facebook/react/commit/d779eba4b375134f373b7dfb9ea98d01c84bc48e that style properties already take priority over direct props, so we can avoid flattening style here. Changelog: [General][Fixed] Small performance tweak to View wrapper to avoid...
Summary: This removes the bulk of code added in https://github.com/facebook/react-native/pull/39630. We're not shipping it, as it caused performance regressions. Changelog: [Internal] Differential Revision: D56796936
Summary: No longer used after last diff. Changelog: [Internal] Differential Revision: D56801475
Summary: These are all either dead, or duplicate code (e.g. for spannable cache). Let's delete it, so we can get rid of the redundant TextLayoutManager that is no longer getting...
Summary: Clean this up, now that there is only one TextLayoutManager. Changelog: [Internal] Differential Revision: D56801446
Summary: The motiviation of this change is to produce sorted / stable native module schemas which members are alphabetically sorted. The benefit is mainly for verifying test fixtures as now...
Summary: Changelog: [General][BREAKING] Don't support 'float' enums in Turbo Modules - The current implementation of 'float enums' in C++ does not work as invalid results are returned. - At potential...
Summary: In https://github.com/facebook/react-native/pull/43520, this was moved to supply with the relevant DevSupportManager, however this check for `useDeveloperSupport` is already part of https://github.com/facebook/react-native/blob/0.74-stable/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/ReactInstanceManager.java#L263 https://github.com/facebook/react-native/blob/0.74-stable/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/devsupport/DefaultDevSupportManagerFactory.java#L68-L70 Having this check here was causing early...