I have a Cordova app that is since recently using WKWebViewEngine and I noticed horizontal and vertical scrollbars appearing since switching.
I researched and the issue is documented at: https://issues.apache.org/jira/browse/CB-10123
A CSS fix does not work but there is apparently a fix with using:
self.wkWebView.scrollView.showsVerticalScrollIndicator = NO;
self.wkWebView.scrollView.showsHorizontalScrollIndicator = NO;
The question is where do I add this fix? I checked in CDVWKWebViewEngine.m but am not sure where to add it.