【发布时间】:2017-01-12 00:03:33
【问题描述】:
我尝试使用Flickable 在我的应用程序中启用内容滚动。
现在内容是可滚动的,但内容隐藏了顶部内容。
代码:
Flickable {
anchors.top: pageMessagesHeader.bottom
anchors.topMargin: 20
boundsBehavior: Flickable.DragOverBounds
contentHeight: contentItem.childrenRect.height
contentWidth: contentItem.childrenRect.width
height: 500
width: 400
ScrollBar.vertical: ScrollBar {}
Rectangle {
color: "white"
height: 1000
width: 400
id: listMessages
}
}
【问题讨论】: