mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-22 11:38:57 +00:00
refactor(ChatRequestMessage): use StatusQ components
This commit is contained in:
parent
04523a0e85
commit
cf1fc38304
@ -1,9 +1,11 @@
|
||||
import QtQuick 2.13
|
||||
|
||||
import utils 1.0
|
||||
import "../../../../shared"
|
||||
|
||||
import StatusQ.Core 0.1
|
||||
import StatusQ.Controls 0.1
|
||||
|
||||
import "../../../../shared/panels"
|
||||
import "../../../../shared/status"
|
||||
|
||||
Item {
|
||||
width: parent.width
|
||||
@ -19,7 +21,7 @@ Item {
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
}
|
||||
|
||||
StyledText {
|
||||
StatusBaseText {
|
||||
id: contactText1
|
||||
//% "You need to be mutual contacts with this person for them to receive your messages"
|
||||
text: qsTrId("you-need-to-be-mutual-contacts-with-this-person-for-them-to-receive-your-messages")
|
||||
@ -33,9 +35,10 @@ Item {
|
||||
anchors.topMargin: Style.current.padding
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
width: parent.width / 1.3
|
||||
color: Theme.palette.directColor1
|
||||
}
|
||||
|
||||
StyledText {
|
||||
StatusBaseText {
|
||||
id: contactText2
|
||||
visible: !isContact
|
||||
//% "Just click this button to add them as contact. They will receive a notification. Once they accept the request, you'll be able to chat"
|
||||
@ -46,6 +49,7 @@ Item {
|
||||
anchors.topMargin: 2
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
width: parent.width / 1.3
|
||||
color: Theme.palette.directColor1
|
||||
}
|
||||
|
||||
StatusButton {
|
||||
|
Loading…
x
Reference in New Issue
Block a user