Disable WebView dragging

Just got the iOS beta invite and very excited to get started! I loaded my URL into a webview component and can see it just fine, but was wondering if there’s a way to disable dragging on the webviewer?

Also, the properties tab of Screen1 is blank, is that normal?

Hi there. We are still working on adding properties to Screen 1 so nothing wrong on your side.

What do you mean about WebViewer dragging?

Okay got it. And here’s what I’m talking about, the first screen is the webviewer without me dragging the screen, the second is with me dragging the screen.

Any ideas on this? Thanks!

Not possible yet :smiley:

Perhaps you could add these tags to your HTML file:
Under the <head> tag:
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />

And add these CSS styles to the body tag:

-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
position:top;

I am not sure if this will work. Let me know if it does.
Cheers
Helios