ionic-team / ionic-team/cordova-plugin-ionic-webview

Disabling the scrollbars in iOS..

Open
#450 0 comments 1 reaction 0 assignees View on GitHub
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

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.