qt6-bb10/qtdeclarative/tests/baseline/controls/data/label/label.qml

22 lines
279 B
QML

import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
ColumnLayout {
width: 100
Label {
text: "Label"
}
Label {
text: "Label"
enabled: false
}
Label {
text: "Label"
LayoutMirroring.enabled: true
}
}