+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..5c98b428844d9f7d529e2b6fb918d15bf072f3df
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,2 @@
+# Default ignored files
+/workspace.xml
\ No newline at end of file
diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml
new file mode 100644
index 0000000000000000000000000000000000000000..f299c1db053cd6f73b793c6d6ec35c9a62222904
--- /dev/null
+++ b/.idea/inspectionProfiles/Project_Default.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000000000000000000000000000000000000..6d26c1e06229922ed27c712cdfbf48dda63b70b7
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 0000000000000000000000000000000000000000..2f1f8c0c3c0a3547614470c2f7cf73dd021a3aa2
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000000000000000000000000000000000000..35eb1ddfbbc029bcab630581847471d7f238ec53
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e8159829406b64c5393c2d65984c3760878acfcc
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,46 @@
+project(qiflora)
+
+cmake_minimum_required(VERSION 2.8.12)
+set(KF5_MIN_VERSION "5.18.0")
+set(QT_MIN_VERSION "5.5.0")
+
+################# Disallow in-source build #################
+
+if("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")
+ message(FATAL_ERROR "This application requires an out of source build. Please create a separate build directory.")
+endif()
+
+include(FeatureSummary)
+
+################# set KDE specific information #################
+
+find_package(ECM 0.0.8 REQUIRED NO_MODULE)
+
+# where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is checked
+set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
+
+include(ECMSetupVersion)
+include(ECMGenerateHeaders)
+include(KDEInstallDirs)
+include(KDECMakeSettings)
+include(ECMPoQmTools)
+include(KDECompilerSettings NO_POLICY_SCOPE)
+
+################# Find dependencies #################
+
+find_package(Qt5 ${QT_MIN_VERSION} REQUIRED NO_MODULE COMPONENTS Core Quick Test Gui Svg QuickControls2)
+find_package(KF5Kirigami2 ${KF5_MIN_VERSION})
+
+################# Enable C++11 features for clang and gcc #################
+
+if(UNIX)
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -std=c++0x")
+endif()
+
+################# build and install #################
+add_subdirectory(src)
+
+install(PROGRAMS org.kde.qiflora.desktop DESTINATION ${KDE_INSTALL_APPDIR})
+install(FILES org.kde.qiflora.appdata.xml DESTINATION ${KDE_INSTALL_METAINFODIR})
+
+feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES)
diff --git a/README.md b/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..f665ee376033d63597fd7abf8f1bd1b0f5545792
--- /dev/null
+++ b/README.md
@@ -0,0 +1,7 @@
+# Kirigami application template
+
+This repository can be used as a template to develop Plasma Mobile applications.
+It already includes templates for the qml ui, a c++ part, app metadata and flatpak packaging.
+
+# Usage
+See [docs.plasma-mobile.org](https://docs.plasma-mobile.org/AppDevelopment.html).
diff --git a/org.kde.qiflora.appdata.xml b/org.kde.qiflora.appdata.xml
new file mode 100644
index 0000000000000000000000000000000000000000..d0625b7b12863eb2265504757b54fa615101fcd8
--- /dev/null
+++ b/org.kde.qiflora.appdata.xml
@@ -0,0 +1,18 @@
+
+
+ org.kde.qiflora
+ Kirigami Example Application
+ A short summary describing what this software is about
+ A permissive license for this metadata, e.g. "FSFAP"
+ The license of this software as SPDX string, e.g. "GPL-3+"
+ The software vendor name, e.g. "ACME Corporation"
+
+
Multiple paragraphs of long description, describing this software component.
+
You can also use ordered and unordered lists:
+
+
Feature 1
+
Feature 2
+
+
Keep in mind to XML-escape characters, and that this is not HTML markup.