From 8a8729a371373d5c841e058ab21f4fdd0169b40a Mon Sep 17 00:00:00 2001 From: Michael Bohlender Date: Tue, 27 Feb 2018 08:37:28 +0100 Subject: todo view scaffold --- views/todo/qml/View.qml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 views/todo/qml/View.qml (limited to 'views/todo/qml') diff --git a/views/todo/qml/View.qml b/views/todo/qml/View.qml new file mode 100644 index 00000000..ef3cc0bd --- /dev/null +++ b/views/todo/qml/View.qml @@ -0,0 +1,33 @@ +/* + * Copyright (C) 2017 Christian Mollekopf, + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +import QtQuick 2.4 +import QtQuick.Layouts 1.1 +import QtQuick.Controls 2.0 +import org.kube.framework 1.0 as Kube + +FocusScope { + id: root + + Kube.Label { + anchors { + centerIn: parent + } + text: "ToDo" + } +} -- cgit v1.2.3