RCTTabBar (#23118)
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:
parent
62395d09eb
commit
70227fec66
|
@ -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);
|
|
@ -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,
|
||||
|
||||
|
|
Loading…
Reference in New Issue