qt6-bb10/qtdeclarative/tests/auto/quick/qquickflickable/data/fractionalExtent.qml

15 lines
275 B
QML

import QtQuick
Flickable {
width: 300
height: 300
contentWidth: content.width; contentHeight: content.height
Rectangle {
id: content
width: 350
height: 350
color: "darkkhaki"
}
boundsBehavior: Flickable.StopAtBounds
}