La horde de boutons

main
Alexis Drai 2 years ago
parent a0a4f9e075
commit 103e0a8c00

@ -84,14 +84,18 @@ Page {
}
}
BigButton {
buttonText.text: "First Button"
onClicked: console.log("First Button clicked!")
}
Flow {
width: parent.width
spacing: Theme.paddingLarge
Repeater {
model: 20
BigButton {
buttonText.text: "Second Button"
onClicked: console.log("Second Button clicked!")
buttonText.text: "Button " + (index + 1)
onClicked: console.log("Button " + (index + 1) + " clicked!")
}
}
}
}
}

Loading…
Cancel
Save