mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-15 09:04:45 +00:00
d9d6d90dc9
- legacy Style and ThemePalette removed - moved and deduplicated font definitions into `Theme` (unrelated to a color palette) - `Style.current.foo` -> `Theme.foo` - `Style.current.fooColor` -> `Theme.palette.fooColor` - upgrade the imports to 5.15 - removed some mode dead components Fixes #16514
29 lines
728 B
QML
29 lines
728 B
QML
import utils 1.0
|
|
|
|
import StatusQ.Components 0.1
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
StatusListItem {
|
|
property var network
|
|
property bool areTestNetworksEnabled
|
|
title: network.chainName
|
|
asset.name: Theme.svg(network.iconUrl)
|
|
asset.isImage: true
|
|
width: parent.width
|
|
leftPadding: Theme.padding
|
|
rightPadding: Theme.padding
|
|
components: [
|
|
StatusBaseText {
|
|
objectName: "testnetLabel_" + network.chainName
|
|
text: qsTr("Sepolia testnet active")
|
|
color: Theme.palette.baseColor1
|
|
visible: areTestNetworksEnabled
|
|
},
|
|
StatusIcon {
|
|
icon: "next"
|
|
color: Theme.palette.baseColor1
|
|
}
|
|
]
|
|
}
|