moment/src/qml/SidePane/SidePane.qml

31 lines
626 B
QML
Raw Normal View History

import QtQuick 2.7
import QtQuick.Layouts 1.3
import "../Base"
HRectangle {
id: sidePane
2019-04-28 11:01:38 -04:00
property int normalSpacing: 8
property bool collapsed: false
HColumnLayout {
anchors.fill: parent
AccountList {
Layout.fillWidth: true
Layout.fillHeight: true
spacing: collapsed ? 0 : normalSpacing
topMargin: spacing
bottomMargin: spacing
Layout.leftMargin: spacing
Behavior on spacing {
2019-05-14 15:15:10 -04:00
NumberAnimation { duration: HStyle.animationDuration }
}
}
PaneToolBar {}
}
}