-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.qml
151 lines (144 loc) · 4.27 KB
/
main.qml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
import QtQuick 2.15
import QtQuick.Window 2.15
import Ducky.Feather 1.0
ApplicationWindow {
initialPage: Page {
PageHeader {
id: txt1
title: "Feather Toolkit"
}
Button {
id: btn1
text: "Page Pop Demo"
anchors.top: txt1.bottom
anchors.topMargin: txt1.height / 2
anchors.horizontalCenter: parent.horizontalCenter
onClicked: pageStack.push(anotherPage)
}
Button {
id: btn2
text: "ListView Demo"
anchors.top: btn1.bottom
anchors.topMargin: txt1.height / 2
anchors.horizontalCenter: parent.horizontalCenter
onClicked: pageStack.push(listPageComponent)
}
}
property Page apage: null
Component {
id: anotherPage
Page {
id: page1
Component.onCompleted: apage = page1;
Button {
text: "Forward"
anchors.centerIn: parent
onClicked: pageStack.push(anotherPage2)
}
}
}
Component {
id: anotherPage2
Page {
id: page2
Button {
text: "Back"
anchors.centerIn: parent
onClicked: pageStack.pop(apage)
}
}
}
Component {
id: listPageComponent
Page {
id: listPage
ListView {
anchors.fill: listPage
width: listPage.width
height: listPage.height
header: PageHeader {
title: "ListView Demo"
}
model: contactModel
delegate: Item {
width: listPage.width; height: 40 * Screen.pixelDensity
Column {
anchors.fill: parent
anchors.margins: 5 * Screen.pixelDensity
Text {
font.pixelSize: 16 * Screen.pixelDensity
text: '<b>Name:</b> ' + name
}
Text {
font.pixelSize: 12 * Screen.pixelDensity
text: '<b>Number:</b> ' + number
}
}
}
}
ListModel {
id: contactModel
ListElement {
name: "Bill Smith"
number: "555 3264"
}
ListElement {
name: "John Brown"
number: "555 8426"
}
ListElement {
name: "Sam Wise"
number: "555 0473"
}
ListElement {
name: "Bill Smith"
number: "555 3264"
}
ListElement {
name: "John Brown"
number: "555 8426"
}
ListElement {
name: "Sam Wise"
number: "555 0473"
}
ListElement {
name: "Bill Smith"
number: "555 3264"
}
ListElement {
name: "John Brown"
number: "555 8426"
}
ListElement {
name: "Sam Wise"
number: "555 0473"
}
ListElement {
name: "Bill Smith"
number: "555 3264"
}
ListElement {
name: "John Brown"
number: "555 8426"
}
ListElement {
name: "Sam Wise"
number: "555 0473"
}
ListElement {
name: "Bill Smith"
number: "555 3264"
}
ListElement {
name: "John Brown"
number: "555 8426"
}
ListElement {
name: "Sam Wise"
number: "555 0473"
}
}
}
}
}