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