Qt 6 circular gauge issue
-
Hello everyone!
I am developing a qml app in qt5 with circular gauge. I want to port application qt 6. But in qt 6 qtquick extras is missing, so circular gauge is not available. Is qt planning to make it available in next releases of qt6? What can I do instead of using circular gauge in qt6?
Is there anyone who knows about it? -
I was able to get the CircularGauge working with Qt 6.2 without too much effort, using source code from qt5. The dependence on Qt.Controls 1 is not too hard to work around. I added the C++ RangeModel to my app and I simply inlined the Style components into CircularGauge and CircularTickmarkLabel.
-
@bee65 Silly question, but what is the right way to incorporate this into a qmake project? I can see how to brute force it by individually including the files into the project, but I feel like there's probably some smart way to include this entire component as an atomic third-party directory.