react-navigation/src/PlatformHelpers.js

12 lines
230 B
JavaScript
Raw Normal View History

2017-02-09 02:30:58 +05:30
/* @flow */
export const Linking = {
addEventListener: () => {},
removeEventListener: () => {},
getInitialURL: () => Promise.reject('Unsupported platform'),
};
export const BackAndroid = {
addEventListener: () => {},
};