aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets/qml/flickable.qml
blob: 7334059b9e324c9ce7c6ca1b6f04d30fe0b6e676 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//! [document]
import QtQuick

Flickable {
    width: 200; height: 200
    contentWidth: image.width; contentHeight: image.height

    Image { id: image; source: "bigImage.png" }
}
//! [document]