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