What MCU/Processor/Board and compiler are you using?
ESP32
What LVGL version are you using?
v8.3
What do you want to achieve?
I have a panel containing a list of labels, aligned vertically. There are many labels so scrolling is necessary.
When I scroll the list, I would like the last item to stop at the bottom of the panel, instead of going all the way to the top.
Is this possible? Thanks!
I think by default this is already the normal behavior for scrolling, that is to say, once you reach the end of your display area with the scroll view, you cannot scroll below it.
Perhaps you could put a small border style around all of your labels and relevant areas to see where they end if they behave like you expect.
P.S. If you are just going to make a list of labels, I recommend using a table for this instead, it will be much faster and save quite a lot of memory.
I don’t know if I explained myself well.
Referring to the image, it happens that when I scroll upwards, ‘item6’ arrives at the top (item1), instead I would like it to stop where item3 is now.