Summary:
His PR is related to #22990

Changelog:
----------

[IOS][Changed] - move the call to requireNativeComponent from TabBarIOS.ios.js to RCTTabBarNativeComponent.js
Pull Request resolved: https://github.com/facebook/react-native/pull/23118

Differential Revision: D13781428

Pulled By: cpojer

fbshipit-source-id: 3034c7db127a992c5757d70e22d98ee9acf4847b
This commit is contained in:
Rafael Lincoln 2019-01-23 02:00:19 -08:00 committed by Facebook Github Bot
parent 62395d09eb
commit 70227fec66
2 changed files with 36 additions and 3 deletions

View File

@ -0,0 +1,35 @@
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
* @flow
*/
'use strict';
const requireNativeComponent = require('requireNativeComponent');
import type {ViewProps} from 'ViewPropTypes';
import type {ColorValue} from 'StyleSheetTypes';
import type {NativeComponent} from 'ReactNative';
type NativeProps = $ReadOnly<{|
...ViewProps,
unselectedTintColor?: ColorValue,
tintColor?: ColorValue,
unselectedItemTintColor?: ColorValue,
barTintColor?: ColorValue,
barStyle?: ?('default' | 'black'),
translucent?: ?boolean,
itemPositioning?: ?('fill' | 'center' | 'auto'),
|}>;
type RCTTabBarNativeType = Class<NativeComponent<NativeProps>>;
module.exports = ((requireNativeComponent(
'RCTTabBar',
): any): RCTTabBarNativeType);

View File

@ -14,13 +14,11 @@ const React = require('React');
const StyleSheet = require('StyleSheet');
const TabBarItemIOS = require('TabBarItemIOS');
const requireNativeComponent = require('requireNativeComponent');
const RCTTabBar = require('RCTTabBarNativeComponent');
import type {ViewProps} from 'ViewPropTypes';
import type {ColorValue} from 'StyleSheetTypes';
const RCTTabBar = requireNativeComponent('RCTTabBar');
type Props = $ReadOnly<{|
...ViewProps,