[TIMOB-15469] iOS: Ability to remove glossy effect in the tab group
GitHub Issue | n/a |
---|---|
Type | New Feature |
Priority | Critical |
Status | Closed |
Resolution | Won't Do |
Resolution Date | 2017-06-28T13:06:13.000+0000 |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | iOS |
Labels | glossy, tabbar, tabgroup |
Reporter | Matej |
Assignee | Eric Merriman |
Created | 2013-10-01T01:30:32.000+0000 |
Updated | 2017-08-16T01:09:47.000+0000 |
Description
iOS: Ability to remove glossy effect in the tab group (Option to set up clear color)
var win_1 = Ti.UI.createWindow({title: 'First Tab', backgroundColor: "white"}),
win_2 = Ti.UI.createWindow({title: 'Second Tab', backgroundColor: "white"});
var tabGroup = Titanium.UI.createTabGroup({
//tabsBackgroundColor: "red" // some new color
});
var tab_1 = Titanium.UI.createTab({
icon: 'nav_ui.png',
title: 'First Tab',
window: win_1
});
var tab_2 = Titanium.UI.createTab({
icon: 'nav_ui.png',
title: 'Second Tab',
window: win_2
});
tabGroup.addTab(tab_1);
tabGroup.addTab(tab_2);
tabGroup.open();
Attachments
File | Date | Size |
---|---|---|
iOS Simulator Screen shot Oct 1, 2013 3.29.26 AM.png | 2013-10-01T01:30:32.000+0000 | 13974 |
Hi Ingo, I am not 100% sure because I can't test it now on iOS 6 ,but I think that glossy effect is possible to replace with shadowImage property. If you can try it and it does work you can close this issue. Thank you
Not required to implement anymore, since iOS7+ will not have the blur-effect.
Closing with reference to the above observation.