1

I am trying to disable touch event on a view. I found that we can disable it by using pointerEvents={'none'}. When I added it, then it's working in iOS, but not working in android. Is this bug or Is there any other way to disable user event on both Platform?

Piyush Naredi
  • 159
  • 1
  • 10

1 Answers1

0

Try removeClippedSubviews={Platform.OS == 'android'}.

  • Hi and welcome to Stack Overflow! Please take the [tour](https://stackoverflow.com/tour). Thanks for contributing an answer but can you also add an explanation on how your code solves the problem? – Jeanne Dark Dec 03 '20 at 08:21