aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/startupperformance/main.qml
blob: a77490654e6b447ae5af4fc3d1fb2f8f85db0e3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick
import QtQuick.Window
import QtQuick.VirtualKeyboard

Window {
    visible: true
    width: 640
    height: 480
    title: qsTr("Virtual Keyboard")
    id: root

    TextInput {
        anchors.fill: parent
        Component.onCompleted: {
            forceActiveFocus()
            Qt.quit()
        }
    }

    InputPanel {
        id: inputPanel
        anchors.bottom: parent.bottom
        width: root.width
    }
}