27 lines
505 B
QML
27 lines
505 B
QML
|
// 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
|
||
|
}
|
||
|
}
|
||
|
}
|