mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 06:16:32 +00:00
296f70103a
fixes #12095
44 lines
815 B
QML
44 lines
815 B
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
|
|
import Models 1.0
|
|
import Storybook 1.0
|
|
|
|
import shared.views 1.0
|
|
|
|
SplitView {
|
|
orientation: Qt.Vertical
|
|
|
|
Item {
|
|
SplitView.fillWidth: true
|
|
SplitView.fillHeight: true
|
|
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
color: "lightgray"
|
|
}
|
|
|
|
TokenListView {
|
|
anchors.centerIn: parent
|
|
|
|
width: 400
|
|
|
|
getNetworkIcon: function(chainId) {
|
|
return "network/Network=Optimism"
|
|
}
|
|
|
|
assets: WalletAssetsModel {}
|
|
collectibles: WalletNestedCollectiblesModel {}
|
|
}
|
|
}
|
|
|
|
LogsAndControlsPanel {
|
|
SplitView.minimumHeight: 100
|
|
SplitView.preferredHeight: 100
|
|
|
|
SplitView.fillWidth: true
|
|
}
|
|
}
|
|
|
|
// category: Views
|