2019-03-26 18:19:55 +11:00
|
|
|
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
|
2019-04-29 02:45:12 +10:00
|
|
|
import "../Base" as Base
|
2019-03-26 18:19:55 +11:00
|
|
|
|
2019-04-28 14:44:55 +10:00
|
|
|
Base.HGlassRectangle {
|
2019-03-26 18:19:55 +11:00
|
|
|
id: sidePane
|
|
|
|
clip: true // Avoid artifacts when resizing pane width to minimum
|
|
|
|
|
2019-04-29 01:01:38 +10:00
|
|
|
isPageStackDescendant: false
|
|
|
|
|
2019-04-29 02:40:18 +10:00
|
|
|
Base.HColumnLayout {
|
2019-03-26 18:19:55 +11:00
|
|
|
anchors.fill: parent
|
|
|
|
|
|
|
|
AccountList {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.fillHeight: true
|
|
|
|
}
|
|
|
|
|
2019-04-29 02:40:18 +10:00
|
|
|
PaneToolBar {}
|
2019-03-26 18:19:55 +11:00
|
|
|
}
|
|
|
|
}
|