aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quickcontrols/ios/todolist/AppSettings.qml
blob: 37a9fe33e9fb67d78cccbd4513c1df21976d8879 (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 BSD-3-Clause

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
}