I use Ionic capacitor for my ios application; I need to get access to WKWebView configuration and set background color. How access it from AppDelegate file in ios?
I can do it through capacitor plugin with these lines of code, but i want to find better solution:
override public func load() {
let webView = self.bridge?.webView
webView?.backgroundColor = UIColor.black;
}