Blank WebView for html source

Please provide the following:

  1. SDK Version: (“expo”: “~49.0.8”) installed
  2. Platforms(Android/iOS/web/all): - Android
  3. Add the appropriate “Tag” based on what Expo library you have a question on.

Replace this section with as much relevant information as possible and any relevant code along with your question.

i have below installed.
“react-native-web”: “~0.19.6”,
“react-native-webview”: “13.2.2”,

below is the implementation

import { WebView } from ‘react-native-webview’;

<WebView
useWebKit={true}
source={{ html: this.state.termsandconditionData }}
style={TermsStyles.webViewDesign}
originWhitelist={[‘*’]}
onError={(error) => console.error('WebView error: ', error)}
textZoom={80}
/>

termsandconditionData is my data in html which i want to load

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