32 lines
622 B
QML
32 lines
622 B
QML
import QtQuick 2.13
|
|
import QtQuick.Layouts 1.3
|
|
import QtQuick.Controls 2.14
|
|
|
|
import StatusQ.Core 0.1
|
|
|
|
import utils 1.0
|
|
|
|
import shared 1.0
|
|
import "../stores"
|
|
import "../controls"
|
|
|
|
Item {
|
|
property var account
|
|
|
|
height: assetListView.height
|
|
|
|
StatusListView {
|
|
id: assetListView
|
|
anchors.fill: parent
|
|
model: account.assets
|
|
delegate: AssetDelegate {
|
|
locale: RootStore.locale
|
|
currency: RootStore.currentCurrency
|
|
}
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
|
|
ScrollBar.vertical: ScrollBar { policy: ScrollBar.AsNeeded }
|
|
}
|
|
}
|