status-desktop/ui/imports/shared/popups/InviteFriendsPopup.qml
Lukáš Tinkl 319b5dd23e feat(profile dialog): General UI updates
- 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
2024-02-09 11:41:55 +01:00

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
}
}