We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02134ac commit e6670d2Copy full SHA for e6670d2
platform/ios/wd/wd.qml
@@ -0,0 +1,26 @@
1
+/*
2
+ imports.qml
3
+
4
+ Declaration of QML Imports
5
+ required by project.
6
7
+ This is necessary if we want
8
+ to keep qml files in a folder
9
+ separate from .pro file because
10
+ of the way qmlimportscanner works.
11
+ If these imports are not declared,
12
+ qmake will not recognize them,
13
+ and QtQuick will not be packaged
14
+ with statically built apps (i.e. iOS)
15
+ and imported at runtime.
16
17
+ This must be kept in the same
18
+ directory as your .pro file
19
+*/
20
21
+import QtQuick 2.1
22
+import QtQuick.Window 2.1
23
+import QtQuick.Controls 2.1
24
+import QtQuick.Layouts 2.1
25
26
+QtObject {}
0 commit comments