Paste P335

(An Untitled Masterwork)
ActivePublic

Authored by nicolasfella on Feb 25 2019, 12:18 PM.
import QtQuick 2.2
import QtQuick.Layouts 1.1
import QtQuick.Controls 2.4
import org.kde.kirigami 2.4 as Kirigami
Kirigami.CardsListView {
anchors.fill: parent
model: 4
delegate: Kirigami.AbstractCard {
header: Rectangle {
color: "blue"
implicitHeight: Kirigami.Units.largeSpacing * 3
}
contentItem: ColumnLayout {
Label {
text: "Foo"
}
Label {
text: "Bar"
}
}
}
}
nicolasfella created this object in space S1 KDE Community.