You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Had the same issue after upgrading to expo SDK49. I am not sure if this is the best approach, but after downgrading react-native-webview in my case back to 11.23.1 it works again. However, it is not the recommended version by expo.
Had the same issue after upgrading to expo SDK49. I am not sure if this is the best approach, but after downgrading react-native-webview in my case back to 11.23.1 it works again. However, it is not the recommended version by expo.
Issue Description
Error: Object.entries requires that input parameter not be null or undefined
Steps to Reproduce / Code Snippets
import React from 'react'
import { StyleSheet, View, Text,Dimensions } from 'react-native'
import PDFReader from 'rn-pdf-reader-js'
export default class App extends React.Component {
render() {
return (
<PDFReader
source={{
uri: 'https://pmkusum.hareda.gov.in/Site Survey Form.pdf',
}}
webviewProps={{
startInLoadingState: true,
}}
/>
)
}
}
const styles = StyleSheet.create({
container: {
paddingTop: 30,
flex: 1,
},
imageContainer: {
flex: 1,
width: Dimensions.get("window").width,
height: Dimensions.get("window").height,
},
})
Expected Results
open pdf in pdf viewer
Additional Information
The text was updated successfully, but these errors were encountered: