Qt Insight - Qt Quick Application
// Copyright (C) 2017 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause import QtQuick 2.7 import QtQuick.Controls 2.0 import QtQuick.Layouts 1.3 import Coffee 1.0 import QtInsightTracker 1.0 ApplicationWindow { visible: true width: Constants.width height: Constants.height title: qsTr("Coffee") InsightConfiguration { syncInterval: 60 } Component.onCompleted: InsightTracker.enabled = true; ApplicationFlow { } }