Skip to content

Instantly share code, notes, and snippets.

@dridk
Created November 27, 2012 22:17
Show Gist options
  • Save dridk/4157525 to your computer and use it in GitHub Desktop.
Save dridk/4157525 to your computer and use it in GitHub Desktop.
qml repeater
import QtQuick 1.0
Row {
Repeater {
model: 3
Rectangle {
width: 100; height: 40
border.width: 1
color: "yellow"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment