Trying to make a UI for a program in Qt creator.
I got a scroll view where I want to place a custom component (a rectangle). I can manually put the component in there multiple times and scroll up and down so got that working.
My problem is that I want to generate the component automatically when the user presses a button.
So my question is how to "generate/spawn/create" a custom component into a scroll view when the user presses a button
So far I've tried with loaders and calling the custom component directly inside an onClicked function but this does not seem to work.
var component = Qt.createComponent("CustomComponent.qml");
onClicked: { component.createObject(column);
I am trying to create the component inside a column with the id column
you can compare what I am trying to achieve with a social media feed. Where I got a list that is scrollable and I want to put components(atm just a rectangle) in the list.