blob: fe7fd533f2bb8c6086f9c243cfd22222fe72a390 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// @flow
import { BackHandler, Linking } from 'react-native';
import { MobileAppBridge } from 'NativeModules';
const log = console.log;
const exit = () => {
BackHandler.exitApp();
};
const openLink = (link: string) => {
Linking.openURL(link);
};
const openItem = (path: string) => {
MobileAppBridge.openItem(path);
};
export { log, exit, openLink, openItem };
|