How make sticky scrollView effect in Qt
-
I have to make a scrolling effect, similar to android contacts view, where the headers are fixed like eg. A header will be fixed all names starting with A. when B will come A will smoothly shift up and B will take its place.
How to achieve this in QScrollArea. Any suggestion would helpfull. -
Hi
I dont know how the android contact view looks when animated (mine is not)
but often you can make small animations with
http://doc.qt.io/qt-5/animation-overview.html
So maybe a composite widget with a fixed header and a scroll area below could
get you something alike.