cordova-plugin-ionic-webview icon indicating copy to clipboard operation
cordova-plugin-ionic-webview copied to clipboard

Disabling the scrollbars in iOS..

Open spinninghamster opened this issue 6 years ago • 0 comments

I tried to disable the scrollbars with:

::-webkit-scrollbar{
   display:none;
}

and it doesn't seem to be working. I found issues referencing this at:

https://issues.apache.org/jira/browse/CB-10123

But there appears to be no resolution. Is there any "quick fix" for this?

Apparently you can fix it with:

self.wkWebView.scrollView.showsVerticalScrollIndicator = NO;
self.wkWebView.scrollView.showsHorizontalScrollIndicator = NO;

But where to make these changes? Searching Google shows very few results.

spinninghamster avatar Oct 06 '19 10:10 spinninghamster