mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: We don't yet have native driver support for animations in bridgeless mode on Android, which leads to some weird bugs (like an overlay that never disappears). Let's just disable animations on Android again. Reviewed By: mdvacca Differential Revision: D21537982 fbshipit-source-id: b4e8882a414fecbd52dd25e02325b5c588ee68c0
50 lines
1.5 KiB
JavaScript
50 lines
1.5 KiB
JavaScript
/**
|
|
* 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.
|
|
*
|
|
* @flow
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import Platform from '../../Utilities/Platform';
|
|
import typeof AnimatedFlatList from './components/AnimatedFlatList';
|
|
import typeof AnimatedImage from './components/AnimatedImage';
|
|
import typeof AnimatedScrollView from './components/AnimatedScrollView';
|
|
import typeof AnimatedSectionList from './components/AnimatedSectionList';
|
|
import typeof AnimatedText from './components/AnimatedText';
|
|
import typeof AnimatedView from './components/AnimatedView';
|
|
|
|
const AnimatedMock = require('./AnimatedMock');
|
|
const AnimatedImplementation = require('./AnimatedImplementation');
|
|
|
|
const Animated = ((Platform.isTesting ||
|
|
(Platform.OS === 'android' && global.RN$Bridgeless)
|
|
? AnimatedMock
|
|
: AnimatedImplementation): typeof AnimatedMock);
|
|
|
|
module.exports = {
|
|
get FlatList(): AnimatedFlatList {
|
|
return require('./components/AnimatedFlatList');
|
|
},
|
|
get Image(): AnimatedImage {
|
|
return require('./components/AnimatedImage');
|
|
},
|
|
get ScrollView(): AnimatedScrollView {
|
|
return require('./components/AnimatedScrollView');
|
|
},
|
|
get SectionList(): AnimatedSectionList {
|
|
return require('./components/AnimatedSectionList');
|
|
},
|
|
get Text(): AnimatedText {
|
|
return require('./components/AnimatedText');
|
|
},
|
|
get View(): AnimatedView {
|
|
return require('./components/AnimatedView');
|
|
},
|
|
...Animated,
|
|
};
|