moment/harmonyqml/components/sidePane/Root.qml

25 lines
476 B
QML
Raw Normal View History

import QtQuick 2.7
import QtQuick.Controls 2.2
import QtQuick.Layouts 1.4
2019-04-28 14:44:55 +10:00
import QtGraphicalEffects 1.0
import "../base" as Base
2019-04-28 14:44:55 +10:00
Base.HGlassRectangle {
id: sidePane
clip: true // Avoid artifacts when resizing pane width to minimum
2019-04-29 01:01:38 +10:00
isPageStackDescendant: false
ColumnLayout {
anchors.fill: parent
spacing: 0
AccountList {
Layout.fillWidth: true
Layout.fillHeight: true
}
HToolBar {}
}
}