aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quickcontrols2/ios/todolist/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quickcontrols2/ios/todolist/main.qml')
-rw-r--r--examples/quickcontrols2/ios/todolist/main.qml32
1 files changed, 32 insertions, 0 deletions
diff --git a/examples/quickcontrols2/ios/todolist/main.qml b/examples/quickcontrols2/ios/todolist/main.qml
new file mode 100644
index 0000000000..a0067643f1
--- /dev/null
+++ b/examples/quickcontrols2/ios/todolist/main.qml
@@ -0,0 +1,32 @@
+// Copyright (C) 2022 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+
+import QtQuick
+import QtQuick.Window
+import QtQuick.Controls
+
+ApplicationWindow {
+ width: 390
+ height: 844
+ visible: true
+ title: "To Do List"
+
+ header: NavBar {
+ stackView: stackView
+ }
+
+ Flickable {
+ width: parent.width
+ height: parent.height
+ flickableDirection: Flickable.VerticalFlick
+ boundsBehavior: Flickable.StopAtBounds
+
+ ScrollIndicator.vertical: ScrollIndicator {}
+
+ StackView {
+ id: stackView
+ anchors.fill: parent
+ initialItem: HomePage {}
+ }
+ }
+}