summaryrefslogtreecommitdiffstats
path: root/examples/wayland/pure-qml/qml/Keyboard.qml
blob: 2985ffcbd3dd76008d4e80c422c4ef7f42be0ebf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (C) 2017 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

// ![keyboard]
import QtQuick
import QtQuick.VirtualKeyboard

InputPanel {
    visible: active
    y: active ? parent.height - height : parent.height
    anchors.left: parent.left
    anchors.right: parent.right
}
// ![keyboard]