Warning, /frameworks/qqc2-desktop-style/tests/scrollView.qml is written in an unsupported language. File is not indexed.

0001 /*
0002     SPDX-FileCopyrightText: 2018 Marco Martin <mart@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-3.0-only OR GPL-2.0-or-later
0005 */
0006 
0007 import QtQuick
0008 import QtQuick.Controls
0009 
0010 ScrollView {
0011     height: 100
0012     width: 300
0013 
0014     ListView {
0015         model: 100
0016         delegate: Text {
0017             text: modelData
0018         }
0019     }
0020 }