mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-11 14:54:48 +00:00
15 lines
413 B
QML
15 lines
413 B
QML
import StatusQ.Components 0.1
|
|
|
|
StatusListItem {
|
|
property var community
|
|
|
|
title: community.name
|
|
subTitle: community.amISectionAdmin ? qsTr("Admin") : qsTr("Member")
|
|
asset.name: !!community.image ? community.image : community.name
|
|
asset.isImage: asset.name.includes("data")
|
|
asset.isLetterIdenticon: !community.image
|
|
asset.color: community.color
|
|
asset.width: 40
|
|
asset.height: 40
|
|
}
|