Text {
id: txtRand
focus: true
anchors.centerIn: parent
text: "Trouver quelle est la valeur du nombre aléatoire."
horizontalAlignment: Text.AlignHCenter
color: "#eeffffff"
font.pixelSize: 40

Keys.onReturnPressed: {
if (!txtInput.focus) {
focus = false
txtInput.focus = true
txtInput.selectAll()
}
}
}