mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
319b5dd23e
- create new `ShareProfileDialog` with QR code + links - align the context menu items with latest Figma designs - add `isBlocked` to contact icons - adjust SB to show more options and showcase models Fixes #13416 Fixes #13417
22 lines
540 B
QML
22 lines
540 B
QML
import StatusQ.Components 0.1
|
|
import StatusQ.Popups 0.1
|
|
import utils 1.0
|
|
|
|
StatusModal {
|
|
id: root
|
|
|
|
headerSettings.title: qsTr("Download Status link")
|
|
height: 156
|
|
|
|
StatusDescriptionListItem {
|
|
subTitle: qsTr("Get Status at %1").arg(Constants.externalStatusLinkWithHttps)
|
|
tooltip.text: qsTr("Copied!")
|
|
asset.name: "copy"
|
|
iconButton.onClicked: {
|
|
Utils.copyToClipboard(Constants.downloadLink)
|
|
tooltip.visible = !tooltip.visible
|
|
}
|
|
width: parent.width
|
|
}
|
|
}
|