1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
That is a template created for application with using Quick Flux. This template provides:
1. qpm.json - Install QuickFlux via qpm
2. Template of ActionTypes and AppActions
3. Templates of Store / StoreWorker and Adapter
4. 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.
|