react-native-html-webview
react-native-html-webview copied to clipboard
`unknown` has no propType for native prop `AIBHTMLWebView.disableScroll` of native type `BOOL`\n stack
Any idea about this?

Thanks in advance.
Same problem for me...
I've figured out the problem.
Open the index.ios.js file at node_modules/react-native-html-webivew.
Where:
propTypes: {
html: PropTypes.string,
autoHeight: PropTypes.bool,
},
Add the disableScroll propType:
propTypes: {
html: PropTypes.string,
autoHeight: PropTypes.bool,
disableScroll: PropTypes.bool
},
Thanks, it worked. I hope they update it soon.