25 lines
547 B
QML
25 lines
547 B
QML
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
|
|
}
|
|
}
|
|
}
|