Webview not appearing in Expo Web

Viewed 2450

Working fine in expo mobile app, but same code doesn't show anything when opening Expo App on Web browser by running command expo start --web

Here is the sample code

    <WebView 
     originWhitelist={['*']} 
     source={{ uri: 'https://sofit.ltd' }}
     style={{marginBottom:100, height:"100%", width:"100%" }}
    />
1 Answers
Related