mirror of
https://gitlab.com/wheres-the-tp/ui-mobile.git
synced 2026-01-25 07:44:54 -06:00
8 lines
322 B
JavaScript
8 lines
322 B
JavaScript
// @flow
|
|
import { Linking } from 'react-native';
|
|
|
|
export const openUrl = (url: string): Promise<any> => {
|
|
return Linking.canOpenURL(url)
|
|
.then(supported => (supported ? Linking.openURL(url) : Promise.reject(`not supported: ${url}`)))
|
|
.catch(err => console.error('Failed to open URL', err)); // eslint-disable-line
|
|
};
|