moment/harmonyqml/components/SidePane/SidePane.qml

22 lines
398 B
QML
Raw Normal View History

import QtQuick.Layouts 1.3
import "../Base"
HRectangle {
id: sidePane
2019-04-29 01:01:38 +10:00
HColumnLayout {
anchors.fill: parent
AccountList {
Layout.fillWidth: true
Layout.fillHeight: true
Layout.leftMargin:
sidePane.width <= (sidePane.Layout.minimumWidth + spacing) ?
0 : spacing
}
PaneToolBar {}
}
}