12345678910111213141516171819202122232425262728293031323334353637 |
- import { WebView } from 'react-native-webview';
- import React, { PureComponent } from 'react';
- type Props = {}
- class Wview_v1 extends PureComponent<Props> {
- constructor(props) {
- super(props);
- this.v1="a"
- clog("Wview_v1 init")
- }
- render() {
- var wb_url
- clog("Wview_v1 render")
- console.log("wview_v1 render.")
-
- if (glob_vhook?.fns?.gen_xcal_room3) {
- wb_url = glob_vhook.fns.gen_xcal_room3().room_url
- } else {
- wb_url = "https://excalidraw.videocorners.com/#room=4zmaf7d5jtcx4pqgruba,4zmaf7BMXbI6tCEiW7rbgy"
- }
-
-
- // <WebView source = {{uri:"https://excalidraw.videocorners.com/#room=4zmaf7d5jtcx4pqgruba,4zmaf7BMXbI6tCEiW7rbgy"}}
-
- var webview_style = window.glob_vhook.fns.glob_dev_fncb ? window.glob_vhook.fns.glob_dev_fncb("webview_style",{that:this},{}) : {}
- return {
-
- <WebView source = {{uri:wb_url}}
- style = {webview_style}
- ></WebView>
-
- }
- }
- }
-
-
-
- export {Wview_v1}
|