blob: 6252deb1972431b2ef7f4ad54d1a294c7bc3704c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
import QtQuick.VirtualKeyboard
InputPanel {
visible: active
y: active ? parent.height - height : parent.height
anchors.left: parent.left
anchors.right: parent.right
}
|