How can I give the permission for WKWebView to access phone library?

I have a small app and I am using WKWebView for my app, so in WebView I have sign in, when I sign to WebView I have to import image, documents etc to WebView, so I have to use permission in my app, is it possible to apply WKWebView in below code?

import SwiftUI
import WebKit

struct ContentView: View {
    var body: some View {
        ZStack{
            WebView()
        }
       
    }
}

struct WebView: UIViewRepresentable {

    func makeUIView(context: Context) -> WKWebView {
        WKWebView(frame: .zero)
    }

    func updateUIView(_ view: WKWebView, context: UIViewRepresentableContext<WebView>) {

        let request = URLRequest(url: URL(string: "https://codepen.io/login")!)

        view.load(request)
    }
}



struct ContentView_Previews: PreviewProvider {
    static var previews: some View {
        ContentView()
            .navigationBarHidden(true)
    }
}


How can I give the permission for WKWebView to access phone library?
 
 
Q