QML FileDialog open IOS PhotoGallery
Unsolved
QML and Qt Quick
-
Hello, I am trying to open Photo Gallery via FileDialog. But it takes about a minute to open Photos, application freezes until it will open Photos. What am i doing wrong? Does the fact that i have 3500 photos in my album matters?
Rectangle { anchors.fill: parent color: "gray" Button { anchors.centerIn: parent onClicked: { fileDialog.open() } } } FileDialog { id: fileDialog folder: shortcuts.pictures }
-
If i open Photo Gallery via QFileDialog, it opens instantly.