16 lines
277 B
QML
Executable File
16 lines
277 B
QML
Executable File
import QtQuick 2.12
|
|
import QtQuick.Controls 2.12
|
|
|
|
|
|
|
|
Label {
|
|
|
|
x: parent.width - width
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
horizontalAlignment: Text.AlignHCenter
|
|
width: parent.width
|
|
font.pixelSize: 18
|
|
color: couleur_blanc_casse
|
|
text: "--"
|
|
}
|