qskinny/playground/lineedit/lineedit.qml

31 lines
461 B
QML
Raw Normal View History

2017-07-21 18:21:34 +02:00
import QtQuick 2.5
import Skinny 1.0
import LineEdit 1.0
2017-07-21 18:21:34 +02:00
Main
{
// inputPanel: embeddedInputPanel
2017-07-21 18:21:34 +02:00
Window
{
id: window
visible: true
width: 600
height: 600
LinearBox
{
defaultAlignment: Qt.AlignCenter
LineEdit
{
sizePolicy: [ SizePolicy.Fixed, SizePolicy.Fixed ]
text: "I am a line edit. Edit me."
}
}
}
}