2023-12-18 05:21:39 +00:00
|
|
|
// Copyright (C) 2023 The Qt Company Ltd.
|
2022-05-13 13:12:05 +00:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2016-01-04 16:13:08 +00:00
|
|
|
|
2020-03-26 16:01:51 +00:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
2016-01-04 16:13:08 +00:00
|
|
|
|
|
|
|
ApplicationWindow {
|
|
|
|
width: 540
|
|
|
|
height: 960
|
|
|
|
visible: true
|
|
|
|
|
|
|
|
Page {
|
|
|
|
anchors.fill: parent
|
|
|
|
header: Label {
|
|
|
|
padding: 10
|
|
|
|
text: qsTr("Contacts")
|
|
|
|
font.pixelSize: 20
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
verticalAlignment: Text.AlignVCenter
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|