Permalink
Please sign in to comment.
Browse files
Added new fiber-based renderer for native dubbed ReactNativeFiber
- Loading branch information...
Showing
with
650 additions
and 82 deletions.
- +23 −4 flow/react-native-host-hooks.js
- +1 −1 src/renderers/native/NativeMethodsMixin.js
- +2 −64 src/renderers/native/ReactNative.js
- +16 −4 src/renderers/native/ReactNativeComponentTree.js
- +18 −0 src/renderers/native/ReactNativeFeatureFlags.js
- +395 −0 src/renderers/native/ReactNativeFiber.js
- +2 −1 src/renderers/native/ReactNativeGlobalResponderHandler.js
- +81 −0 src/renderers/native/ReactNativeStack.js
- +8 −0 src/renderers/native/ReactNativeStackInjection.js
- +50 −0 src/renderers/native/ReactNativeViewConfigRegistry.js
- +16 −0 src/renderers/native/__mocks__/ReactNative.js
- +19 −5 src/renderers/native/createReactNativeComponentClass.js
- +19 −3 src/renderers/native/findNodeHandle.js
| @@ -0,0 +1,18 @@ | ||
| +/** | ||
| + * Copyright 2013-present, Facebook, Inc. | ||
| + * All rights reserved. | ||
| + * | ||
| + * This source code is licensed under the BSD-style license found in the | ||
| + * LICENSE file in the root directory of this source tree. An additional grant | ||
| + * of patent rights can be found in the PATENTS file in the same directory. | ||
| + * | ||
| + * @providesModule ReactNativeFeatureFlags | ||
| + */ | ||
| + | ||
| +'use strict'; | ||
| + | ||
| +var ReactNativeFeatureFlags = { | ||
| + useFiber: false, | ||
| +}; | ||
| + | ||
| +module.exports = ReactNativeFeatureFlags; |
Oops, something went wrong.
0 comments on commit
5266ca9