mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 02:30:38 -08:00
15 lines
224 B
QML
15 lines
224 B
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
|
|
Item {
|
|
width: 300
|
|
height: 500
|
|
|
|
Label {
|
|
objectName: "label"
|
|
text: "downloading..."
|
|
anchors.centerIn: parent
|
|
font.pixelSize: 24
|
|
font.bold: true
|
|
}
|
|
}
|