18 lines
334 B
QML
Executable File
18 lines
334 B
QML
Executable File
import QtQuick 2.12
|
|
import QtQuick.Controls 2.12
|
|
|
|
|
|
|
|
Label {
|
|
|
|
property color couleur: shipheart_formulaire_couleur_texte_par_defaut
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
// horizontalAlignment: Text.AlignHCenter
|
|
leftPadding: 20
|
|
width: parent.width
|
|
font.pixelSize: 18
|
|
color: couleur
|
|
text: "--"
|
|
}
|