mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-24 07:08:07 +00:00
23 lines
455 B
QML
23 lines
455 B
QML
import QtQuick 2.7
|
|
import QtQuick.Controls 2.0
|
|
import QtQuick.Layouts 1.3
|
|
|
|
RowLayout {
|
|
property alias placeholderText: textArea.placeholderText
|
|
|
|
Flickable {
|
|
Layout.preferredHeight: parent.height
|
|
Layout.fillWidth: true
|
|
ScrollBar.vertical: ScrollBar { }
|
|
TextArea.flickable: TextArea {
|
|
id: textArea
|
|
|
|
wrapMode: TextArea.Wrap
|
|
}
|
|
}
|
|
|
|
DropZone {
|
|
Layout.preferredHeight: parent.height
|
|
Layout.preferredWidth: 40
|
|
}
|
|
}
|