Created
November 4, 2016 03:01
-
-
Save 0xlitf/f327b8e3b870ae5ff1c8e624cc294b31 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Rectangle { | |
| id: infoText | |
| anchors.centerIn: parent | |
| width: parent.width | |
| height: 40 | |
| color: "black" | |
| Text { | |
| color: "white" | |
| anchors.centerIn: parent | |
| text: "You can navigate between views using swipe or arrow keys" | |
| } | |
| Behavior on opacity { | |
| NumberAnimation { duration: 400 } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment