NappAppearance
NappAppearance copied to clipboard
Use the power of iOS UIAppearance on Titanium UI components
Looks like popover tintColor and backgroundImage properties are not working. Using Titanium 4.0.0.GA. iOS 8.3. iPad 2 simulator. Here's the sample code: ``` var customAppearance = require('dk.napp.appearance'); customAppearance.setGlobalStyling({ popOver :...
It seems that with Appcelerator SDK 3.2.0 some functions like navBarTitle, navBar, barButton stops working. Can anyone confirm this and much more important, how can we fix this?
NappAppearance.setGlobalStyling({ ``` switchBar : { onTintColor : "#CD1625", tintColor : "#ececec", thumbTintColor : "#aaaaaa", onImage : "/images/switch_on.png", offImage : "/images/switch_off.png" } ``` }); onImage and offImage do not work. The...
Since `NavigationGroup` has been dropped, in the example, lines 242-250 need to be replaced with: ``` navGroup.open(win); }); window.setRightNavButton(rightButton); var self = Ti.UI.createTabGroup(); var main = Ti.UI.iOS.createNavigationWindow({window : window}); ```...
Hi, I was wondering, is there an easy way to globally set the Navigation Bar barColor and/or tintColor in a function? Example: ``` button.addEventListener('click', function() { NappAppearance.setGlobalStyling({ navBar: { barColor:'#ff0000',...