mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 17:15:54 +00:00
8ce7ad48b0
Summary: NavigationAnimatedView is deprecated. Use NavigationTransitioner. As discussed in #8262, #8189. Closes https://github.com/facebook/react-native/pull/8269 Reviewed By: hedgerwang Differential Revision: D3462087 Pulled By: ericvicenti fbshipit-source-id: 6d7504cb8533f12a3610d34ef5b35edcf79fd5b7
37 lines
1.0 KiB
JavaScript
37 lines
1.0 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-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 NavigationExperimental
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
const NavigationCard = require('NavigationCard');
|
|
const NavigationCardStack = require('NavigationCardStack');
|
|
const NavigationHeader = require('NavigationHeader');
|
|
const NavigationPropTypes = require('NavigationPropTypes');
|
|
const NavigationStateUtils = require('NavigationStateUtils');
|
|
const NavigationTransitioner = require('NavigationTransitioner');
|
|
|
|
const NavigationExperimental = {
|
|
// Core
|
|
StateUtils: NavigationStateUtils,
|
|
|
|
// Views
|
|
Transitioner: NavigationTransitioner,
|
|
|
|
// CustomComponents:
|
|
Card: NavigationCard,
|
|
CardStack: NavigationCardStack,
|
|
Header: NavigationHeader,
|
|
|
|
PropTypes: NavigationPropTypes,
|
|
};
|
|
|
|
module.exports = NavigationExperimental;
|