34 lines
601 B
QML
34 lines
601 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
ColumnLayout {
|
|
spacing: 2
|
|
width: 200
|
|
|
|
TextArea {
|
|
text: "TextArea\n...\n...\n...\n..."
|
|
cursorDelegate: Item {}
|
|
}
|
|
|
|
TextArea {
|
|
placeholderText: "TextArea\n...\n...\n..."
|
|
enabled: false
|
|
cursorDelegate: Item {}
|
|
}
|
|
|
|
TextArea {
|
|
placeholderText: "TextArea\n...\n...\n..."
|
|
focus: true
|
|
cursorDelegate: Item {}
|
|
}
|
|
|
|
TextArea {
|
|
text: "TextArea\n...\n...\n...\n..."
|
|
LayoutMirroring.enabled: true
|
|
cursorDelegate: Item {}
|
|
}
|
|
}
|
|
|
|
|