~qqworini/aesydict/online-improve

« back to all changes in this revision

Viewing changes to app/components/ResultWordList.qml

  • Committer: Joey Chan
  • Date: 2015-03-14 11:42:38 UTC
  • Revision ID: qqworini@gmail.com-20150314114238-xx0ivhxhwt7hcotc
add full cmake support

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 2.2
 
2
import Ubuntu.Components 1.1
 
3
 
 
4
Page {
 
5
    id: pageDictCenter
 
6
    title: "Click the icon"
 
7
    state: "default"
 
8
    states: [
 
9
        PageHeadState {
 
10
            name: "default"
 
11
            head: pageDictCenter.head
 
12
            actions: Action {
 
13
                iconName: "search"
 
14
                onTriggered: pageDictCenter.state = "search"
 
15
            }
 
16
        }
 
17
    ]
 
18
 
 
19
}
 
20