14 lines
187 B
QML
14 lines
187 B
QML
|
|
import QtQuick
|
||
|
|
import QtQuick.Controls
|
||
|
|
import QtQuick.Layouts
|
||
|
|
|
||
|
|
NavigationPage {
|
||
|
|
title: qsTr("Notifications")
|
||
|
|
|
||
|
|
Text {
|
||
|
|
text: "TODO"
|
||
|
|
|
||
|
|
Layout.fillHeight: true
|
||
|
|
}
|
||
|
|
}
|