您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

wv1.native.js 840B

123456789101112131415161718192021222324252627282930313233343536
  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 wb_url
  12. clog("Wview_v1 render")
  13. console.log("wview_v1 render.")
  14. /*
  15. if (glob_vhook?.fns?.gen_xcal_room3) {
  16. } else {
  17. }
  18. */
  19. var webview_style = window.glob_vhook.fns.glob_dev_fncb ? window.glob_vhook.fns.glob_dev_fncb("webview_style",{that:this},{}) : {}
  20. return {
  21. <WebView source = {{uri:"https://excalidraw.videocorners.com/#room=4zmaf7d5jtcx4pqgruba,4zmaf7BMXbI6tCEiW7rbgy"}}
  22. style = {webview_style}
  23. ></WebView>
  24. }
  25. }
  26. }
  27. export {Wview_v1}