Answer the question
In order to leave comments, you need to log in
Why is WebView not working?
I'm using the code below to embed a website in an app:
import React from 'react'
import {View, Text, StyleSheet} from 'react-native'
import {WebView} from 'react-native-webview'
export const Browser = props => {
return (
<View>
<WebView source={{uri: 'http://facebook.com/'}} style={{flex:1}} javaScriptEnabled={true} />
</View>
)
}
Answer the question
In order to leave comments, you need to log in
import React from 'react'
import {View, Text, StyleSheet} from 'react-native'
import {WebView} from 'react-native-webview'
export const Browser = props => {
return (
<View style={{flex:1, width:"100%",height:"100%"}}>
<WebView source={{uri: 'http://facebook.com/'}} style={{flex:1}} javaScriptEnabled={true} />
</View>
)
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question