Dawid Przydróżny
Dawid Przydróżny
Like @KazakovVS suggests, you can pass `androidLayerType` prop with `software` value to underlying web view: ``` ``` `androidHardwareAccelerationDisabled` is deprecated according to react-native-webview [documentation](https://github.com/react-native-webview/react-native-webview/blob/master/docs/Reference.md#androidhardwareaccelerationdisabled), so there is no need to...
Any update on this?
I was able to fix it like this: ``` type InputMask = TextInputMask & TextInputMaskMethods const inputRef = useRef(null) ```
Thank you for saved my debugging time
I found a solution to put blob response as a new Blob with desired type: ``` const blob = new Blob([response.data], { type: "base64", }); ```