ionic-team / ionic-team/cordova-plugin-ionic-webview
Disabling the scrollbars in iOS..
Open
- Dominant language
- Objective-C
- Stars
- 493
- Forks
- 410
- PR merge metrics
- No merged PRs in 30d
Description
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.
Contributor guide
Assessment
This issue has not been assessed yet.