I am doing a simple slider project just to understand how sliders work in QML.
I am using the slider from Qt.labs.controls
I looked at their documentation and there are only two methods.
void decrease()
and void increase()
All I want to do is display the value corresponding to the slider position. I can't find any signal or method that tells me if the current position changed or something like that. Am I looking in the right place? Or Do I have to write everything from scratch to make my simple project work?
Update: I am using QT5.6 should I use higher version for this