Animate the Search bar
[quandoparte] / application / resources / harmattan / qml / main.qml
1 import QtQuick 1.1
2 import QtMobility.systeminfo 1.2
3 import com.nokia.meego 1.0
4
5 PageStackWindow {
6     id: window
7     showToolBar: true
8     showStatusBar: screen.currentOrientation === Screen.Landscape ? false : true
9     initialPage: StationListPage {
10     }
11     AlignedTimer {
12         id: updateTimer
13         minimumInterval: 120
14         maximumInterval: 130
15     }
16     Component.onCompleted: {
17         if (settings.checkingInterval > 0) updateTimer.start()
18     }
19 }