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/ListSectionHeader.qml
2018-10-09 00:58:48 +02:00

18 lines
400 B
QML

import QtQuick 2.9
import QtQuick.Layouts 1.3
import QtQuick.Controls 2.2
ColumnLayout {
width: parent.width
property alias text: label.text
Label {
id: label
Layout.fillWidth: true
Layout.leftMargin: app.margins
Layout.rightMargin: app.margins
Layout.topMargin: app.margins
horizontalAlignment: Text.AlignRight
}
ThinDivider {}
}