/** * 通用 webview 封装 */ import React from 'react'; import { WebView } from 'react-native-webview'; interface Props { uri: any; onLoadEndHandle?: () => void; handleWebViewNavigationStateChange?: (newNavState: { url: any }) => void; onMessageHandle?: (e: any) => void; refHandle?: (r: any) => any; } export const DenetWebview = (props: Props) => { return ( ); };