mirror of
https://github.com/status-im/dotherside.git
synced 2025-02-14 21:57:08 +00:00
34 lines
470 B
QML
34 lines
470 B
QML
|
import QtQuick 2.2
|
||
|
import QtQuick.Controls 1.2
|
||
|
import QtQuick.Layouts 1.1
|
||
|
import QtQuick.Window 2.1
|
||
|
|
||
|
ApplicationWindow
|
||
|
{
|
||
|
width: 400
|
||
|
height: 300
|
||
|
|
||
|
Component.onCompleted: visible = true
|
||
|
|
||
|
ColumnLayout
|
||
|
{
|
||
|
anchors.fill: parent
|
||
|
|
||
|
Label
|
||
|
{
|
||
|
text: "Current name is:" + contact.name
|
||
|
}
|
||
|
|
||
|
TextField
|
||
|
{
|
||
|
id: textField
|
||
|
}
|
||
|
|
||
|
Button
|
||
|
{
|
||
|
text: "Change Name"
|
||
|
onClicked: contact.name = textField.text
|
||
|
}
|
||
|
}
|
||
|
}
|