Created
November 11, 2014 21:38
-
-
Save tzmartin/0fb8460cc43df4411b3b to your computer and use it in GitHub Desktop.
Alloy TSS Window Transparency Properties
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
"Window[platform=ios]": { | |
// Tell the windowManager this window is part of the NavGroup by default | |
navGroup: true, | |
backButtonTitle: '', // No back button title by default | |
statusBarStyle: Ti.UI.iPhone.StatusBar.LIGHT_CONTENT, | |
barColor: 'transparent', | |
translucent: true, | |
navTintColor: '#fff', | |
backgroundColor: '#ffffff99', // rgba for transparency | |
extendEdges: [ | |
Ti.UI.EXTEND_EDGE_TOP | |
], | |
//barImage:'generic/transparent.png', // optional image instead of rgba | |
hideShadow:true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment