Created
January 26, 2011 01:18
-
-
Save elpuri/796040 to your computer and use it in GitHub Desktop.
KittyApp v2
This file contains 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
Text { | |
id: titleText | |
anchors.centerIn: parent | |
anchors.verticalCenterOffset: 3 | |
font.family: "Lato Black" | |
font.pixelSize: 32 | |
color: "#ffddee" | |
styleColor: "#2f000000" | |
style: Text.Sunken | |
text: viewSwitcher.currentView.viewTitle // <---- | |
} |
This file contains 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
Loader { | |
property bool keepLoaded : true | |
property url viewSource | |
property string viewTitle : item.viewTitle |
This file contains 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
Loader { | |
property bool keepLoaded : true | |
property url viewSource | |
property string viewTitle : item == null ? "" : item.viewTitle <--------- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment