KevinnZou/compose-webview-multiplatform

Download Interface

Opened this issue · 0 comments

Hello,

Could you consider to add a DownloadListener like in Android:

    /**
     * Registers the interface to be used when content can not be handled by
     * the rendering engine, and should be downloaded instead. This will replace
     * the current handler.
     *
     * @param listener an implementation of DownloadListener
     */
    public void setDownloadListener(@Nullable DownloadListener listener) {
        checkThread();
        mProvider.setDownloadListener(listener);
    }

Is it possible to receive download events in current version (1.9.20) ?