summaryrefslogtreecommitdiff
path: root/src/settings/GeneralPage.qml
blob: 3324c95bb09a240981d7acf28c4e1e373771bacb (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
// SPDX-FileCopyrightText: 2024 Alexander Kavon <me+kue@alexkavon.com>
// SPDX-License-Identifier: GPL-2.0-or-later

pragma ComponentBehavior: Bound

import QtQuick
import org.kde.kirigamiaddons.formcard as FormCard

FormCard.FormCardPage {
    id: root

    title: i18nc("@title", "General")

    FormCard.FormHeader {
        title: i18nc("@title:group", "My Group")
    }

    FormCard.FormHeader {
        title: i18nc("@title:group", "My Group:")
    }

    FormCard.FormCard {
        FormCard.FormTextFieldDelegate {
            label: i18nc("@label:textbox", "My Label:")
        }
    }
}