44 lines
899 B
QML
44 lines
899 B
QML
import QtQuick
|
|
import QtQuick.VirtualKeyboard
|
|
|
|
Window {
|
|
id: window
|
|
width: 640
|
|
height: 480
|
|
visible: true
|
|
title: qsTr("Hello World")
|
|
|
|
Text {
|
|
text: "Yo yo what's up"
|
|
}
|
|
|
|
InputPanel {
|
|
id: inputPanel
|
|
z: 99
|
|
x: 0
|
|
y: window.height
|
|
width: window.width
|
|
|
|
states: State {
|
|
name: "visible"
|
|
when: inputPanel.active
|
|
PropertyChanges {
|
|
target: inputPanel
|
|
y: window.height - inputPanel.height
|
|
}
|
|
}
|
|
transitions: Transition {
|
|
from: ""
|
|
to: "visible"
|
|
reversible: true
|
|
ParallelAnimation {
|
|
NumberAnimation {
|
|
properties: "y"
|
|
duration: 250
|
|
easing.type: Easing.InOutQuad
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|