moment/harmonyqml/components/SidePane/SidePane.qml

22 lines
401 B
QML
Raw Normal View History

import QtQuick.Layouts 1.3
2019-04-28 14:44:55 +10:00
import QtGraphicalEffects 1.0
import "../Base"
HGlassRectangle {
id: sidePane
clip: true // Avoid artifacts when resizing pane width to minimum
2019-04-29 01:01:38 +10:00
isPageStackDescendant: false
HColumnLayout {
anchors.fill: parent
AccountList {
Layout.fillWidth: true
Layout.fillHeight: true
}
PaneToolBar {}
}
}