We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a09d44 commit 46ca7b4Copy full SHA for 46ca7b4
BeyondWordsPlayer/BeyondWordsPlayer/PlayerView.swift
@@ -26,9 +26,12 @@ public class PlayerView: UIView {
26
contentController.add(bridge, name: bridge.name)
27
configuration.userContentController = contentController
28
let webView = WKWebView(frame: .zero, configuration: configuration)
29
+ webView.isOpaque = false
30
+ webView.backgroundColor = .clear
31
webView.navigationDelegate = self
32
webView.scrollView.bounces = false
33
webView.scrollView.isScrollEnabled = false
34
+ webView.scrollView.backgroundColor = .clear
35
if #available(iOS 16.4, *) {
36
#if DEBUG
37
webView.isInspectable = true
0 commit comments