Last active
November 24, 2021 06:07
-
-
Save jeferandom/2bb006b87738c6883da1b79911f2d37c to your computer and use it in GitHub Desktop.
Hide element class name on webview React Native
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, {useEffect} from 'react'; | |
import { WebView } from 'react-native-webview'; | |
export default function OrderReviewScreen() { | |
const runFirst = ` | |
document.getElementsByClassName('main-header')[0].style.display = 'none'; | |
true; // note: this is required, or you'll sometimes get silent failures | |
`; | |
return ( | |
<> | |
<WebView | |
source={{ uri: `https://example.cl/`}} | |
injectedJavaScript={runFirst} | |
style={{backgroundColor: 'blue'}} | |
/> | |
</> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment