1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 | Page {
title: i18n.tr("Example page")
Label {
anchors.centerIn: parent
text: i18n.tr("Hello world!")
}
head.actions: [
Action {
iconName: "search"
text: i18n.tr("Search")
},
Action {
iconName: "contacts"
text: i18n.tr("Contacts")
}
]
}
|