moment/src/gui/Base/HFlickableColumnPage.qml

27 lines
505 B
QML
Raw Normal View History

// SPDX-License-Identifier: LGPL-3.0-or-later
import QtQuick 2.12
HPage {
focusTarget: column
property alias flickable: flickable
default property alias columnData: column.data
HFlickable {
id: flickable
anchors.fill: parent
clip: true
contentWidth: parent.width
contentHeight: column.childrenRect.height
HColumnLayout {
id: column
width: flickable.width
height: flickable.height
}
}
}