How can I display a QStringList in C++ to a QML ListView
问题 So I'm new to Qt and I'm trying to improve my C++ skills, so I decided to start a project where I can search items in a QStringList using a textfield. I got the search function working and I was able to move the result of the search into another QStringList , where I can use it to display to the user in a function that is declared as a "public slot". The main Idea is that the list will auto update as soon as the user enters a character into the textfield, which it already does. So I managed