Detect user's tap on status bar

I have an app which uses Scene

    var body: some Scene {
        WindowGroup {
            RootView(root: appDelegate.root)
                .edgesIgnoringSafeArea(.all)
                .onOpenURL { url in
                    let stringUrl = url.absoluteString
                    if (stringUrl.starts(with: "http")) {
                        handleUniversalLink(url: stringUrl)
                    } else if (stringUrl.starts(with: "fb")) {
                        let _ = ApplicationDelegate.shared.application(
                            UIApplication.shared,
                            open: url,
                            sourceApplication: nil,
                            annotation: [UIApplication.OpenURLOptionsKey.annotation])
                    }
                }
        }
    }

I need to detect when a user taps on status bar. And call some functions when he does it. Is it possible in Swift?

Detect user's tap on status bar
 
 
Q