This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
powersync-app/nymea-app/ui/components/GroupedListView.qml
2019-01-28 23:43:42 +01:00

18 lines
331 B
QML

import QtQuick 2.9
import QtQuick.Controls 2.2
ListView {
id: root
ScrollBar.vertical: ScrollBar {}
clip: true
section.property: "baseInterface"
section.criteria: ViewSection.FullString
section.delegate: ListSectionHeader {
text: app.interfaceToString(section)
}
SwipeDelegateGroup {}
}