linphone-desktop/tests/ui/modules/Linphone/DroppableTextArea.qml
2016-10-07 10:49:28 +02:00

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