1 2 3 4 5 6 7 8 9 10 11 12 13
// @flow import { BackHandler } from 'react-native'; import { Linking } from 'react-native'; const exit = () => { BackHandler.exitApp(); }; const open = (link: string) => { Linking.openURL(link); }; export {exit, open};