mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
2904018173
Structure of the all subsection of the settings section has the same high level structure Fixes #5650
22 lines
470 B
QML
22 lines
470 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
|
|
title: network.chainName
|
|
icon.isLetterIdenticon: true
|
|
width: parent.width
|
|
leftPadding: Style.current.padding
|
|
rightPadding: Style.current.padding
|
|
components: [
|
|
StatusIcon {
|
|
icon: "chevron-down"
|
|
rotation: 270
|
|
color: Theme.palette.baseColor1
|
|
}
|
|
]
|
|
}
|