mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-05 18:20:33 -08:00
12 lines
153 B
QML
12 lines
153 B
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
|
|
Item {
|
|
width: 300
|
|
height: 500
|
|
|
|
Image {
|
|
objectName: "logo"
|
|
anchors.centerIn: parent
|
|
}
|
|
}
|