Qt Code:
  1. FolderListModel {
  2. id: cacheFolderModel
  3. folder: qsTr("file://%1").arg(appWin.myFilePath)
  4. nameFilters: ["*.che"]
  5. }
To copy to clipboard, switch view to plain text mode 

On Android & iOS, this works if the page with the FolderListModel is instantiated in my main.qml. However, if I load that page with a StackView, it breaks in iOS. The FolderListModel ends up showing ALL files, not following the 'nameFilters' parameter....

Any ideas on why?