QProgressDialog
QProgressDialog is a widget that provides a progress dialog that you can use in your application.
Example
import { QProgressDialog } from '@vixen-js/core';
const progress = new QProgressDialog();progress.setLabelText("Downloading...");progress.setCancelButtonText("Cancel");progress.setRange(0, 100);progress.setValue(0);Learn more about QProgressDialog in: https://doc.qt.io/qt-6/qprogressdialog.html