You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @larpon, I just came across this project and was wondering something. So in my application the user needs to download multiple files: the user clicks a button and the download starts, the user clicks the button again and a new download starts again (up to 15 times). Now would this be possible with your plugin? I see that you need instantiate a Download class in QML for each download, but how can I dynamically generate a Download each time I need it? Something like
Button{
function downloadSomething(url)
{
// how to create a Download dynamically???
}
id: button
onClicked: downloadSomethingNew(webview.url)
}
The text was updated successfully, but these errors were encountered:
@larpon yeah I thought about using components as well. Your idea about constructing a DownloadManager seems nice although I need to check how long will that take. Thanks a lot for your input.
Hi @larpon, I just came across this project and was wondering something. So in my application the user needs to download multiple files: the user clicks a button and the download starts, the user clicks the button again and a new download starts again (up to 15 times). Now would this be possible with your plugin? I see that you need instantiate a
Download
class in QML for each download, but how can I dynamically generate aDownload
each time I need it? Something likeThe text was updated successfully, but these errors were encountered: