Send an SMS when the text field is accepted
Solves T8339
This commit is contained in:
parent
c42829a7d6
commit
fdb03afb4d
1 changed files with 7 additions and 4 deletions
|
@ -54,13 +54,16 @@ Kirigami.ScrollablePage
|
|||
id: message
|
||||
Layout.fillWidth: true
|
||||
placeholderText: i18n("Say hi...")
|
||||
}
|
||||
Button {
|
||||
text: "Send"
|
||||
onClicked: {
|
||||
onAccepted: {
|
||||
console.log("sending sms", page.phoneNumber)
|
||||
page.telephony.sendSms(page.phoneNumber, message.text)
|
||||
}
|
||||
}
|
||||
Button {
|
||||
text: "Send"
|
||||
onClicked: {
|
||||
message.accepted()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue