create girls.h that defines a Girl data type and a vector of girls
create qbridge class with
a. constructor that pre-loads test data in girls
b. method getGirlsList() that returns the girls data converted to a ListModel
update Page2Form.qml Component.onCompleted() to call the getGirlsList() method to retrieve the list data for the girls_list ListView
remove static ListElement data from Page2Form.qml ListModel
I have added a ListView to the QML in Page2Form.qml. Currently, as a starting point, I have included a static ListModel containing two elements.
This task is to replace that ListModel with data that is supplied by C++ function.