如何在React native中打开应用程序内浏览器窗口

问题描述 投票:6回答:4

当我点击一个URL(iOS和Android)时,我正在尝试打开浏览器窗口而不离开应用程序。

行为应如下(使用airbnb app示例):

我怎样才能做到这一点?我是否需要使用任何指定的现有库?

我正在使用react-native 0.37,顺便说一句。

谢谢。

react-native react-redux react-native-android react-native-ios
4个回答
5
投票

打开Safa模块方法

在iOS SafariView第三方原生模块 - https://github.com/naoufal/react-native-safari-view

在Android CustomTabs第三方原生模块 - https://github.com/droibit/react-native-custom-tabs - 但是如果用户没有安装Chrome,它将在默认浏览器中弹出应用程序外部的链接。

替代WebView方法

您可以使用<WebView>,但这不是使用真正的浏览器 - http://facebook.github.io/react-native/releases/0.47/docs/webview.html#webview

import React, { Component } from 'react';
import { WebView } from 'react-native';

class MyWeb extends Component {
  render() {
    return (
      <WebView
        source={{uri: 'https://github.com/facebook/react-native'}}
        style={{marginTop: 20}}
      />
    );
  }
}

5
投票

你可以使用新的InAppBrowser plugin for React Native,查看下一个例子:

import InAppBrowser from 'react-native-inappbrowser-reborn';

...
  async openLink() {
    try {
      await InAppBrowser.isAvailable()
      InAppBrowser.open('https://www.google.com', {
        // iOS Properties
        dismissButtonStyle: 'cancel',
        preferredBarTintColor: 'gray',
        preferredControlTintColor: 'white',
        // Android Properties
        showTitle: true,
        toolbarColor: '#6200EE',
        secondaryToolbarColor: 'black',
        enableUrlBarHiding: true,
        enableDefaultShare: true,
        forceCloseOnRedirection: true,
      }).then((result) => {
        Alert.alert(JSON.stringify(result))
      })
    } catch (error) {
      Alert.alert(error.message)
    }
  }
...

另一方面,您可以使用此插件进行深层链接,检查项目的自述文件。


3
投票

使用React Native Custom Tabs在React native中打开应用内浏览器窗口。它支持平台Android和iOS


1
投票

你可以使用React Native In-App Browser Reborn。它在Android和iOS上都能很好地运行。

该库使用iOS上的react-native-safari-view(SafariView)和Android上的react-native-custom-tabs(ChromeView)。

© www.soinside.com 2019 - 2024. All rights reserved.