status-desktop/ui/app/AppLayouts/Profile/views/wallet/NetworksView.qml

62 lines
1.4 KiB
QML
Raw Normal View History

import QtQuick 2.13
import SortFilterProxyModel 0.2
import shared.status 1.0
2022-03-02 12:54:58 +00:00
import StatusQ.Controls 0.1
import StatusQ.Core 0.1
import StatusQ.Core.Theme 0.1
import utils 1.0
import "../../stores"
2022-03-02 12:54:58 +00:00
import "../../controls"
2022-03-02 12:54:58 +00:00
Item {
id: root
2022-03-02 12:54:58 +00:00
signal goBack
property WalletStore walletStore
2022-03-02 12:54:58 +00:00
Column {
id: column
anchors.top: parent.top
anchors.left: parent.left
width: parent.width
2022-03-02 12:54:58 +00:00
Repeater {
id: layer1List
model: SortFilterProxyModel {
sourceModel: walletStore.networks
filters: ValueFilter {
roleName: "layer"
value: 1
}
}
2022-03-02 12:54:58 +00:00
delegate: WalletNetworkDelegate {
network: model
}
}
StatusSectionHeadline {
leftPadding: Style.current.padding
rightPadding: Style.current.padding
2022-03-02 12:54:58 +00:00
text: qsTr("Layer 2")
topPadding: Style.current.bigPadding
bottomPadding: Style.current.padding
}
Repeater {
id: layer2List
model: SortFilterProxyModel {
sourceModel: walletStore.networks
filters: ValueFilter {
roleName: "layer"
value: 2
}
}
2022-03-02 12:54:58 +00:00
delegate: WalletNetworkDelegate {
network: model
}
}
}
2022-03-15 13:38:20 +00:00
}