52d538e995
Backend.models.accounts → Backend.accounts Backend.models.roomEvents → Backend.roomEvents
15 lines
224 B
QML
15 lines
224 B
QML
import QtQuick 2.7
|
|
import QtQuick.Layouts 1.3
|
|
|
|
ListView {
|
|
id: accountList
|
|
clip: true
|
|
|
|
spacing: 8
|
|
topMargin: spacing
|
|
bottomMargin: topMargin
|
|
|
|
model: Backend.accounts
|
|
delegate: AccountDelegate {}
|
|
}
|