0

Web View causes issues with rendering until I do a touch action. So trying to disable hardware acceleration as webview.setLayerType(View.LAYER_TYPE_SOFTWARE, null); but there is no reference for this from react native side.

Have took a look at all possible props from react native web view.

Should I write a customWebView and override with nativeConfig or is there an easier alternative

Gaudam Thiyagarajan
  • 1,022
  • 9
  • 24

1 Answers1

0

Web View renders on priority indirectly when it is the only view returned in the component. It get lesser priority when its nested.

<View>
   <Webview />
<View>

changed the above to the following

<Webview />

and it works like a charm

Gaudam Thiyagarajan
  • 1,022
  • 9
  • 24