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