Disable zoom on web-view react-native?

后端 未结 7 1747
死守一世寂寞
死守一世寂寞 2021-01-01 12:22

How to disable zoom on react-native web-view,is there a property like hasZoom={false}(just an example) that can be included in the bel

7条回答
  •  天涯浪人
    2021-01-01 12:48

    For anyone in the future, I solved this by adding the following css :

    *:not(input) {
      user-select: none;
    }
    

    The above basically disable text selection on all elements, which during my testing disallowed zooming on webpage. FYI: I haven't dived deep into details, just stating its effects.

提交回复
热议问题