2023-05-10 11:05:45 +00:00
|
|
|
import QtQuick 2.15
|
|
|
|
import QtQuick.Controls 2.15
|
|
|
|
|
|
|
|
import Models 1.0
|
|
|
|
import Storybook 1.0
|
|
|
|
|
2023-10-05 15:37:47 +00:00
|
|
|
import shared.popups.send.views 1.0
|
2023-05-10 11:05:45 +00:00
|
|
|
|
|
|
|
SplitView {
|
|
|
|
orientation: Qt.Vertical
|
|
|
|
|
|
|
|
Item {
|
|
|
|
SplitView.fillWidth: true
|
|
|
|
SplitView.fillHeight: true
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
anchors.fill: parent
|
|
|
|
color: "lightgray"
|
|
|
|
}
|
|
|
|
|
|
|
|
TokenListView {
|
|
|
|
anchors.centerIn: parent
|
|
|
|
|
|
|
|
width: 400
|
|
|
|
|
|
|
|
assets: WalletAssetsModel {}
|
2023-09-12 14:26:38 +00:00
|
|
|
collectibles: WalletNestedCollectiblesModel {}
|
2023-10-30 22:18:58 +00:00
|
|
|
networksModel: NetworksModel.allNetworks
|
2023-05-10 11:05:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
LogsAndControlsPanel {
|
|
|
|
SplitView.minimumHeight: 100
|
|
|
|
SplitView.preferredHeight: 100
|
|
|
|
|
|
|
|
SplitView.fillWidth: true
|
|
|
|
}
|
|
|
|
}
|
2023-07-31 12:21:14 +00:00
|
|
|
|
|
|
|
// category: Views
|