moment/src/qml/Base/HListView.qml

13 lines
280 B
QML
Raw Normal View History

import QtQuick 2.12
import QtQuick.Controls 2.12
2019-05-14 03:15:03 +10:00
HFixedListView {
interactive: true
keyNavigationWraps: true
// This is used to smooth scroll when currentIndex is changed
highlightMoveDuration: theme.animationDuration * 4
ScrollBar.vertical: ScrollBar {}
2019-05-14 03:15:03 +10:00
}