linphone-desktop/tests/ui/modules/Common/View/ScrollableListView.qml
Ronan Abhamon 88e0688ec9 unstable
2016-10-24 16:34:33 +02:00

17 lines
321 B
QML

import QtQuick 2.7
import QtQuick.Controls 2.0
import Common 1.0
// ===================================================================
ListView {
ScrollBar.vertical: ForceScrollBar {
id: scrollBar
}
boundsBehavior: Flickable.StopAtBounds
clip: true
contentWidth: width - scrollBar.width
spacing: 0
}