wifi-densepose/ui/mobile/src/screens/MATScreen/MatWebView.tsx

27 lines
767 B
TypeScript

import { StyleProp, ViewStyle } from 'react-native';
import WebView, { type WebViewMessageEvent } from 'react-native-webview';
import type { RefObject } from 'react';
import MAT_DASHBOARD_HTML from '@/assets/webview/mat-dashboard.html';
type MatWebViewProps = {
webViewRef: RefObject<WebView | null>;
onMessage: (event: WebViewMessageEvent) => void;
style?: StyleProp<ViewStyle>;
};
export const MatWebView = ({ webViewRef, onMessage, style }: MatWebViewProps) => {
return (
<WebView
ref={webViewRef}
originWhitelist={["*"]}
style={style}
source={{ html: MAT_DASHBOARD_HTML }}
onMessage={onMessage}
javaScriptEnabled
domStorageEnabled
mixedContentMode="always"
overScrollMode="never"
/>
);
};