import QtQuick 1.0 Item { id: newsRect width: window.width ListView { x: 0; y: 0 id: list width: newsRect.width; height: window.height model: currentJournal.newsModel delegate: NewsDelegate { } } ScrollBar { scrollArea: list; height: list.height; width: 8; anchors.right: list.right } }