aboutsummaryrefslogtreecommitdiff
path: root/examples/MenuSection.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/MenuSection.qml')
-rw-r--r--examples/MenuSection.qml30
1 files changed, 0 insertions, 30 deletions
diff --git a/examples/MenuSection.qml b/examples/MenuSection.qml
deleted file mode 100644
index 170fa89..0000000
--- a/examples/MenuSection.qml
+++ /dev/null
@@ -1,30 +0,0 @@
-import QtQuick 1.1
-import Ubuntu.Components 0.1
-import Ubuntu.Components.ListItems 0.1 as ListItem
-
-
-Item {
- property variant menu
- width: parent.width
- height: contents.height
-
- Column {
- id: contents
- width: parent.width
-
- ListItem.Header {
- text: menu.label
- }
-
- Repeater {
- model: menu ? menu.linkSection : undefined
-
- MenuFactory {
- width: contents.width
- menu: model
- }
- }
-
- ListItem.Divider { }
- }
-}