Init file sending.

This commit is contained in:
Black Hat
2018-07-16 22:05:34 +08:00
parent 4ef063ea82
commit 731cef3c77
7 changed files with 34 additions and 7 deletions

View File

@@ -0,0 +1,19 @@
import QtQuick 2.9
import QtQuick.Controls 2.2
import QtMultimedia 5.8
AvatarContainer {
Button {
id: downloadButton
text: content.body
highlighted: !sentByMe
flat: true
onClicked: downloadable.downloadAndOpen()
Audio {
audioRole: Audio.VoiceCommunicationRole
}
}
}