import QtQuick 2.0 import QtQuick.Controls 1.0 Rectangle { width: 500 height: 500 color:"blue" Flickable { width: 500 height: 400 contentHeight: 800 Rectangle { width : 500 height: 800 gradient: Gradient { GradientStop { position: 0.0; color: "white" } GradientStop { position: 1.0; color: "grey" } } clip: true ScrollView { width: 400 height: 400 Rectangle { width: 400 height: 800 } } } } }