Following is my code, My code dose not shows scrollbar, There are some QML example from Qt which shows how to add scrollbar to Flickable element.
Rectangle {
id:main
width:300; height:300
Rectangle {
id:helpScreen
width:main.width; height:main.height
Flickable {
id: flickArea
anchors.fill: parent
contentWidth: helpText.width; contentHeight: helpText.height
flickableDirection: Flickable.VerticalFlick
clip: true
TextEdit{
id: helpText
wrapMode: TextEdit.Wrap
width:helpScreen.width;
readOnly:true
text: "Text goes here"
}
}
}
}
Hope this helps.

