application-amicale/utils/WebBrowser.js

12 lines
262 B
JavaScript
Raw Normal View History

2020-03-30 17:39:59 +02:00
// @flow
import * as React from 'react';
import * as WebBrowser from 'expo-web-browser';
export function openBrowser(url: string, color: string) {
WebBrowser.openBrowserAsync(url, {
toolbarColor: color,
enableBarCollapsing: true,
});
}