17 lines
290 B
QML
17 lines
290 B
QML
import QtQuick 2.7
|
|
import QtQuick.Controls 2.2
|
|
import QtQuick.Layouts 1.4
|
|
|
|
ListView {
|
|
id: accountList
|
|
clip: true
|
|
|
|
spacing: 8
|
|
Layout.leftMargin: spacing
|
|
topMargin: spacing
|
|
bottomMargin: topMargin
|
|
|
|
model: Backend.models.accounts
|
|
delegate: AccountDelegate {}
|
|
}
|