10 lines
212 B
QML
10 lines
212 B
QML
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
import QtQuick 2.12
|
|
import QtQuick.Controls 2.12
|
|
|
|
Flickable {
|
|
interactive: contentWidth > width || contentHeight > height
|
|
ScrollBar.vertical: ScrollBar {}
|
|
}
|