That is a template created for application with using Quick Flux. This template provides:
- qpm.json - Install QuickFlux via qpm
- Template of ActionTypes and AppActions
- Templates of Store / StoreWorker and Adapter
- AppView C++ - Initialize QML environment and listen message from AppDispatcher
File Structre:
.
├── App
│ ├── actions
│ │ ├── ActionTypes.qml
│ │ ├── AppActions.qml
│ │ └── qmldir
│ ├── adapters
│ │ ├── StoreAdapter.qml
│ │ └── qmldir
│ ├── constants
│ │ ├── Constants.qml
│ │ └── qmldir
│ ├── stores
│ │ ├── MainStore.qml
│ │ └── qmldir
│ └── storeworkers
│ ├── MainStoreWorker.qml
│ ├── StoreWorker.qml
│ └── qmldir
├── app.pri
├── app.pro
├── app.qrc
├── appview.cpp
├── appview.h
├── deployment.pri
├── main.cpp
├── main.qml
└── qpm.json
To use this project template, just copy this folder to your workspace. Rename the app.pro to your project name. Then you could start coding.