Add TextField, just to compare

This commit is contained in:
Sebastian Kügler 2011-11-24 23:13:26 +01:00
parent 9dad1d2d14
commit af56e24141

View File

@ -45,17 +45,22 @@ PlasmaComponents.Page {
onClicked: editThing.forceActiveFocus(); onClicked: editThing.forceActiveFocus();
} }
Item { Column {
id: editThing id: editThing
anchors.centerIn: parent anchors.centerIn: parent
width: 300 width: 300
height: 300 height: 300
spacing: 12
Item { height: 60; width: parent.width; }
PlasmaComponents.TextField { PlasmaComponents.TextField {
anchors.centerIn: parent
placeholderText: "Try copy & paste" placeholderText: "Try copy & paste"
} }
PlasmaComponents.TextArea {
width: parent.width
height: 200
placeholderText: "Touch copy & paste not implemented yet."
}
} }
} }