summaryrefslogtreecommitdiffstats
path: root/packaging/ios/Subsurface-mobile/MainForm.ui.qml
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2016-03-14 06:33:47 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-03-23 17:26:46 -0700
commit9028c807b2ca1e9c8bba4a570c4c780cc962ca61 (patch)
treebd3f2bd03397b285244ec4ea4604c09341f4efc1 /packaging/ios/Subsurface-mobile/MainForm.ui.qml
parent32e6cde5481ec325f415a2a9953441ecb0091414 (diff)
downloadsubsurface-9028c807b2ca1e9c8bba4a570c4c780cc962ca61.tar.gz
Change names of iOS build files
The name subsurface-ios was used in many places and that was just not helpful to fight against. This should work much better. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging/ios/Subsurface-mobile/MainForm.ui.qml')
-rw-r--r--packaging/ios/Subsurface-mobile/MainForm.ui.qml25
1 files changed, 25 insertions, 0 deletions
diff --git a/packaging/ios/Subsurface-mobile/MainForm.ui.qml b/packaging/ios/Subsurface-mobile/MainForm.ui.qml
new file mode 100644
index 000000000..7913bb2b8
--- /dev/null
+++ b/packaging/ios/Subsurface-mobile/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")
+ }
+ }
+}