How can I pass props in Webview and get the props in my local html page
export default class HomeScreen extends React.Component {
render() {
return (
<View>
<WebView source={require('../Web/index.html')} />
</View>
);
}
}