Warning, /webapps/qmlonline/qml/examples/repeater.qml is written in an unsupported language. File is not indexed.
0001 import QtQuick 2.13
0002 import QtQuick.Layouts 1.13
0003
0004 Item {
0005 id: root
0006 ColumnLayout {
0007 Repeater {
0008 model: 10
0009 Text {
0010 text: index
0011 }
0012 }
0013 }
0014 }