ScrollView vs Flickable
-
@MohsenNz,
ListViewappears to inherit fromFlickable, whichScrollViewappears to extend:-
ScrollView provides scrolling for user-defined content. It can be used to either replace a Flickable, or to decorate an existing one.
-
As of Qt-6.0, ScrollView automatically clips its contents if you don't use a Flickable as a child. If this is not wanted, you can set your own Flickable as a child, and control the clip property on the Flickable explicitly.
Consequently, their usage isn't 1:1. However, I don't understand what their uses are.
-