aboutsummaryrefslogtreecommitdiffstats
path: root/packaging/ios/subsurface-ios/MainForm.ui.qml
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tcanabrava@kde.org>2016-03-06 06:46:26 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-03-06 11:02:48 -0800
commit710b3615fe875cd99a78f643790201b587ffef97 (patch)
tree8cdf544c07bb6e7a67135b60479bac0a77616800 /packaging/ios/subsurface-ios/MainForm.ui.qml
parent74e6e0ed3798863ccffb39ab46dd88e67b4b460c (diff)
downloadsubsurface-710b3615fe875cd99a78f643790201b587ffef97.tar.gz
iOS build: add various support files
It's unclear why the build fails if we don't add the sample app files as well. [Dirk Hohndel: refactored the patches] Signed-off-by: Tomaz Canabrava <tomaz.canabrava@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging/ios/subsurface-ios/MainForm.ui.qml')
-rw-r--r--packaging/ios/subsurface-ios/MainForm.ui.qml25
1 files changed, 25 insertions, 0 deletions
diff --git a/packaging/ios/subsurface-ios/MainForm.ui.qml b/packaging/ios/subsurface-ios/MainForm.ui.qml
new file mode 100644
index 000000000..7913bb2b8
--- /dev/null
+++ b/packaging/ios/subsurface-ios/MainForm.ui.qml
@@ -0,0 +1,25 @@
+import QtQuick 2.6
+import QtQuick.Controls 1.5
+import QtQuick.Layouts 1.3
+
+Item {
+ width: 640
+ height: 480
+
+ property alias button1: button1
+ property alias button2: button2
+
+ RowLayout {
+ anchors.centerIn: parent
+
+ Button {
+ id: button1
+ text: qsTr("Press Me 1")
+ }
+
+ Button {
+ id: button2
+ text: qsTr("Press Me 2")
+ }
+ }
+}