mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-20 21:27:50 -06:00

QML is leading here and holding the pointers for creation and destruction. Contributes to issue CURA-8556.
19 lines
No EOL
341 B
QML
19 lines
No EOL
341 B
QML
// Copyright (c) 2021 Ultimaker B.V.
|
|
// Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
import Cura 1.7 as Cura
|
|
|
|
Item
|
|
{
|
|
Repeater
|
|
{
|
|
model: Cura.PackageList{}
|
|
|
|
Label
|
|
{
|
|
text: "Test" //TODO: Create a card for each package.
|
|
}
|
|
}
|
|
} |