76b699ad64
Put QML components into folders, remove unused ones, split __init__.py with engine.py.
23 lines
419 B
QML
23 lines
419 B
QML
import QtQuick 2.7
|
|
import QtQuick.Controls 2.2
|
|
import QtQuick.Layouts 1.4
|
|
import "../base" as Base
|
|
|
|
Rectangle {
|
|
id: sidePane
|
|
color: "gray"
|
|
clip: true // Avoid artifacts when resizing pane width to minimum
|
|
|
|
ColumnLayout {
|
|
anchors.fill: parent
|
|
spacing: 0
|
|
|
|
AccountList {
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
}
|
|
|
|
HToolBar {}
|
|
}
|
|
}
|