How do I clone a QWidget in PySide6, but with different information inside each clone?
I’m trying to create a display of local world panels that people can upload to my database. Each of these local worlds has different data, and it’s precisely this data that distinguishes them. Each world is displayed on a panel, but I’m facing an issue: only the last world from the database is being displayed. I know this is because each panel is stored in the same variable. I don’t know how to implement the functionality I described earlier. I know how to do this in customtkinter; I even have a snippet of such code, but PySide6 surprises me.