import QtQuick 2.5 import QtQuick.Controls 1.3 import QtQuick.Controls.Styles 1.4 import QtQuick.Layouts 1.0 ScrollView { anchors.fill: parent ListView { anchors { left: parent.left; right: parent.right} height: contentHeight model: 10000 interactive: false clip: true delegate: RowLayout { Button {} Label {} CheckBox {} SpinBox {} } } }