2020-06-17 15:18:31 -04:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
2020-05-27 17:28:25 -04:00
|
|
|
import "../../../../imports"
|
2020-06-19 14:06:58 -04:00
|
|
|
import "../../../../shared"
|
2020-09-18 10:29:31 +02:00
|
|
|
import "../../../../shared/status"
|
2020-05-27 17:28:25 -04:00
|
|
|
|
|
|
|
Item {
|
|
|
|
id: notificationsContainer
|
2020-09-18 10:29:31 +02:00
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: contentMargin
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: contentMargin
|
2020-05-27 17:28:25 -04:00
|
|
|
|
2020-09-18 10:29:31 +02:00
|
|
|
StatusSectionHeadline {
|
|
|
|
text: qsTr("Notification preferences")
|
|
|
|
anchors.top: parent.top
|
2020-05-27 17:28:25 -04:00
|
|
|
}
|
|
|
|
}
|