import React, { PureComponent } from 'react'; import { WebView, Platform, requireNativeComponent, WebViewProperties, WebViewProps, } from 'react-native'; export interface BaseWebViewProps extends WebViewProperties { getRef?: any; } // react-native自带的webview在安卓上不能拍照片和选择照片. class BaseWebView extends PureComponent { render() { return ( {this.props.children} ); } } const Config = Platform.OS === 'android' ? { component: requireNativeComponent('CustomWebView'), } : null; export default BaseWebView;