Hello!
I think what is missing is a specification of the contentWidth and contentHeight of the ScrollView. The reason this breaks in the main case is because ColumnLayout has no default width/height. In spite of your specification of an implicitHeight and implicitWidth the ScrollView still must have the content sizes specified manually.
So adding:
contentWidth: parent.width contentHeight: the_column.heightto the ScrollView resolves the issues.