Why is this Web View not loading in Snack for React Native

I have this following Html that i am trying to load to a web view but it is not loading in Snack only white screen + no error

import * as React from 'react';
import { renderToString } from 'react-dom/server'
import { WebView } from 'react-native-webview';
import { View, Text } from "react-native";
import Component from './ReactComp';
import PlyrComponent from './PlyrComponent';

export default class App extends React.Component {


  initialHTMLContent = `
<!DOCTYPE html>
<html>

<head>
  <meta charset="utf-8">
  <title></title>
  <meta name="author" content="">
  <meta name="description" content="">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <script src='https://unpkg.com/rahulrsingh09-stenciltest2@0.0.3/dist/test/test.js'></script>
  
</head>

<body>
Hello
<my-component source-url="https://fcc3ddae59ed.us-west-2.playback.live-video.net/api/video/v1/us-west-2.893648527354.channel.DmumNckWFTqz.m3u8"></my-component>


</body>

</html>
  `



  render() {
    return (
          <View
      style={{
        flex: 1,
      }}
    >
            <WebView
        originWhitelist={['*']}    
        javaScriptEnabled={true}
        domStorageEnabled={true}
         source={{html: this.initialHTMLContent, baseUrl: null}}
        // source={{uri : 'https://www.twitch.tv/videos/721473497'}}
      />
      </View>
    )
  }
}

Webview Example - Snack. The Html Loads standalone when saved as .html file

The following snack works for me:

1 Like

This topic was automatically closed 20 days after the last reply. New replies are no longer allowed.