|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+import { WebView } from 'react-native-webview';
|
|
|
2
|
+import React, { PureComponent } from 'react';
|
|
|
3
|
+type Props = {}
|
|
|
4
|
+class Wview_v1 extends PureComponent<Props> {
|
|
|
5
|
+ constructor(props) {
|
|
|
6
|
+ super(props);
|
|
|
7
|
+ this.v1="a"
|
|
|
8
|
+ clog("Wview_v1 init")
|
|
|
9
|
+ }
|
|
|
10
|
+ render() {
|
|
|
11
|
+ var webview_style = window.glob_vhook.fns.glob_dev_fncb ? window.glob_vhook.fns.glob_dev_fncb("webview_style",{that:this},{}) : {}
|
|
|
12
|
+ return {
|
|
|
13
|
+
|
|
|
14
|
+ <WebView source = {{uri:"https://excalidraw.videocorners.com/#room=4zmaf7d5jtcx4pqgruba,4zmaf7BMXbI6tCEiW7rbgy"}}
|
|
|
15
|
+ style = {webview_style}
|
|
|
16
|
+ ></WebView>
|
|
|
17
|
+
|
|
|
18
|
+ }
|
|
|
19
|
+ }
|
|
|
20
|
+}
|
|
|
21
|
+
|
|
|
22
|
+
|
|
|
23
|
+
|
|
|
24
|
+export {Wview_v1}
|