How to use the expo.WebBrowser.openBrowserAsync function in expo

To help you get started, we’ve selected a few expo examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github sysgears / apollo-universal-starter-kit / modules / authentication / client-react / social / google / containers / GoogleButton.native.jsx View on Github external
const googleLogin = () => {
  const url = buildRedirectUrlForMobile('google');
  if (Platform.OS === 'ios') {
    WebBrowser.openBrowserAsync(url);
  } else {
    Linking.openURL(url);
  }
};
github HaysS / firebase-login-app / screens / HomeScreen.js View on Github external
_handleHelpPress = () => {
    WebBrowser.openBrowserAsync(
      'https://docs.expo.io/versions/latest/guides/up-and-running.html#can-t-see-your-changes'
    );
  };
}
github codepicks / CodePicks / src / screens / HomeScreen.js View on Github external
handleHelpPress = () => {
    WebBrowser.openBrowserAsync(
      'https://docs.expo.io/versions/latest/guides/up-and-running.html#can-t-see-your-changes',
    )
  }
github F4b1n0u / my-games / app / components / complete-detailed-game.js View on Github external
_handleSeeMore = () => {
    const {
      site_detail_url: siteDetailUrl,
    } = this.props

    WebBrowser.openBrowserAsync(siteDetailUrl);
  }
github nickbclifford / Cronch / expo / pages / CheckUrls.tsx View on Github external
navigateToSettings() {
		WebBrowser.openBrowserAsync('https://mymicds.net/settings');
	}
github EvanBacon / Instagram / screens / FeedScreen.js View on Github external
_handleLearnMorePress = () => {
    WebBrowser.openBrowserAsync(
      'https://docs.expo.io/versions/latest/guides/development-mode',
    );
  };
github murffious / AppleMusicAppClone / screens / HomeScreen.js View on Github external
_handleLearnMorePress = () => {
    WebBrowser.openBrowserAsync(
      'https://docs.expo.io/versions/latest/guides/development-mode'
    );
  };