QML ListView appropriate for Logger
I am working on Qt/QML
application, which among other consists of QML
Splash screen at startup. Inside the splash screen, I check for many things like:
- LAN/WAN connection ok?
- Settings database connection ok?
- Merchandise database connection ok?
- Search for
CUPS
andBluetooth
printer(s) - etc ...
Now, in this Splash Screen - in its bottom part, I have simple QML ListView with custom delegate, consisting of simple QML Text. Backlogic C++
class uses this ListView
to show the results of uppers checks. Now, this works for now (there are still some modifications to be done), however, since I am LIGHT YEARS AWAY FROM BEING Graphics/UI/UX Designer, is it appropriate (from this point of view) to use such GUI
element for this task?