mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-02-09 09:13:32 +08:00
* Remove flow types from src * Finish removing Flow * Clear out flow-typed, some flow mentions in docs, website flow usage, and some other config
10 lines
218 B
JavaScript
10 lines
218 B
JavaScript
import {
|
|
BackAndroid as DeprecatedBackAndroid,
|
|
BackHandler as ModernBackHandler,
|
|
Linking,
|
|
} from 'react-native';
|
|
|
|
const BackHandler = ModernBackHandler || DeprecatedBackAndroid;
|
|
|
|
export { BackHandler, Linking };
|