ukui-menu/qml/AppControls2/AppItem.qml

25 lines
547 B
QML
Raw Normal View History

2023-02-14 09:34:15 +08:00
import QtQuick 2.0
import QtQuick.Layouts 1.12
Item {
RowLayout {
anchors.fill: parent
Image {
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
Layout.preferredWidth: 32
Layout.preferredHeight: 32
source: icon
}
Text {
Layout.fillWidth: true
Layout.fillHeight: true
Layout.leftMargin: 5
horizontalAlignment: Qt.AlignLeft
verticalAlignment: Qt.AlignVCenter
text: name
}
}
}