react-native
react-native copied to clipboard
A framework for building native applications using React
Summary: Convert the first few files in the module Changelog: [Internal] Reviewed By: zeyap Differential Revision: D55802173
Summary: When landing D55749058, I had to gate some API calls with a version check as those API where not available for Versions < 26. However, while doing that, I...
Summary: Changelog: [Android] [Fixed] - Fixed broken Networking Module tests Differential Revision: D56440749
Summary: This last change finally implements `requestIdleCallback` and `cancelIdleCallback`, filling one of the gaps of the New Architecture The implementation is completely in C++ so it should work the same...
Summary: This change only adds skelethon methods to register and cancel the idle callbacks ## Changelog [internal] - add private methods to register callbacks, empty implementation Differential Revision: D56472138
### Description Before React Native upgrade, 'selection' prop was used to set the position of the cursor to the specified position. This used to work for readOnly inputs, pre-filled inputs...
Summary: This diff is part of RFC0759 https://github.com/react-native-community/discussions-and-proposals/pull/759 Here we're looking into splitting the autolinking into a component that will live inside core (specifically inside the React Native Gradle Plugin...
Summary: To implement idleCallbacks, we need the concept of priorities, tasks and timeout. Runtime Scheduler offers all of them, so, as a first step, we want to pass the scheduler...
Summary: The RuntimeScheduler now has some fixed timouts depending on the priority selected when scheduling a task. However, some JS APIs like the `requestIdleCallback` allow the user to specify a...
Summary: Register Globals to call `requestIdleCallback` and `cancelIdleCallback` ## Changelog [General][Added] - Register globals for IdleCallbacks Differential Revision: D56472923