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-09 00:05:33 +01:00

16 lines
292 B
QML

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