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/mea/ui/delegates/ThingDelegate.qml
2018-06-20 21:17:26 +02:00

16 lines
315 B
QML

import QtQuick 2.0
import QtQuick.Controls 2.2
import QtQuick.Layouts 1.2
import "../components"
MeaListItemDelegate {
id: root
width: parent.width
iconName: app.interfacesToIcon(root.interfaces)
text: root.name
progressive: true
property var interfaces: []
property string name: ""
}