76b699ad64
Put QML components into folders, remove unused ones, split __init__.py with engine.py.
12 lines
206 B
QML
12 lines
206 B
QML
import QtQuick 2.7
|
|
import QtQuick.Controls 2.2
|
|
import QtQuick.Layouts 1.4
|
|
|
|
ListView {
|
|
id: "accountList"
|
|
spacing: 8
|
|
model: Backend.accountsModel
|
|
delegate: AccountDelegate {}
|
|
clip: true
|
|
}
|