Well I found a solution. I post here so maybe it helps somebody.
You need to declare a global property which stores the height. For example : reViewHeight
Put the ListView inside a transparent Rectangle: rcView, and put the rectangle inside the ScrollView
Add: Component.onCompleted: { reViewHeight = reViewHeight + height} in your delegate definition
In the ListView add: onCountChanged: { rcView.height = reViewHeight }
Done !