aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quickcontrols/ios/todolist/AppSettings.qml
blob: 764ba8b8fcfbe291c6691b8837984c676438ea17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

pragma Singleton

import QtCore

Settings {
    // The properties here are given default values to account for the first run of the application.
    // After the application has run once, future values will come from the stored settings.
    property bool showDoneTasks: true
    property int maxTasks: 30
    property int fontSize: 18
}