smartlook / smartlook-react-native-sdk

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Black screen on webviews

moshaheen opened this issue · comments

Having a webview in my react native app shows as a black screen in the recordings

Hi @moshaheen ,

WebView is not recorded by default however you can pass any View's ref to our API and SDK will record even blacklisted Views, i.e.:

<TextInput
ref={(ref) => {
Smartlook.unregisterBlacklistedView(ref);
}
}
...