cordova-plugin-ionic-webview
cordova-plugin-ionic-webview copied to clipboard
Disabling the scrollbars in iOS..
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.