lqml/examples/.android-ssl-test/qml/main.qml
2024-11-20 20:59:23 +01:00

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
}
}