import QtQuick 2.2
import QtQuick.Controls 1.1
Column
{
spacing: 2
Repeater
{
model: ["A","B","C","D","E","F"]
Rectangle
{
width: 100
height: 20
radius: 3
color: "blue"
Text
{
anchors.centerIn: parent
text: modelData
}
}
}
}
2
import QtQuick 2.2
import QtQuick.Controls 1.1
Column
{
spacing: 2
Repeater
{
model: 5
Rectangle
{
width: 100
height: 20
radius: 3
color: "blue"
Text
{
anchors.centerIn: parent
text: modelData
}
}
}
}