import QtQuick 2.3 import QtQuick.Controls 1.2 import QtQuick.Layouts 1.1 import QtQuick.Window 2.2 Window { width: 400 height: 400 visible: true ScrollView { anchors.topMargin: 0.5 anchors.fill: parent ColumnLayout { id: col Repeater { model: 100 Item { height: childrenRect.height Label { id: titleLine text: qsTr("Big Fat Title Line For Attention") font.bold: true wrapMode: Text.Wrap } Label { id: subtitleLine anchors { top: titleLine.bottom } text: qsTr("very juicy small subtitle") font.bold: false wrapMode: Text.Wrap } } } } } }