La horde de boutons

main
Alexis Drai 2 years ago
parent a0a4f9e075
commit 103e0a8c00

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

Loading…
Cancel
Save