4import QGroundControl.Controls
6/// QGC version of ListVIew control that shows horizontal/vertial scroll indicators
9 boundsBehavior: Flickable.StopAtBounds
12 property color indicatorColor: qgcPal.text
14 QGCPalette { id: qgcPal; colorGroupEnabled: enabled }
16 Component.onCompleted: {
17 var indicatorComponent = Qt.createComponent("QGCFlickableScrollIndicator.qml")
18 indicatorComponent.createObject(root, { orientation: QGCFlickableScrollIndicator.Horizontal })
19 indicatorComponent = Qt.createComponent("QGCFlickableScrollIndicator.qml")
20 indicatorComponent.createObject(root, { orientation: QGCFlickableScrollIndicator.Vertical })