~qqworini/aesydict/online-improve

« back to all changes in this revision

Viewing changes to app/components/ResultWord.qml

  • Committer: Joey Chan
  • Date: 2015-04-10 14:38:56 UTC
  • Revision ID: qqworini@gmail.com-20150410143856-f6y58wmgno21agim
search functions now initially works

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