Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-15469] iOS: Ability to remove glossy effect in the tab group

GitHub Issuen/a
TypeNew Feature
PriorityCritical
StatusClosed
ResolutionWon't Do
Resolution Date2017-06-28T13:06:13.000+0000
Affected Version/sn/a
Fix Version/sn/a
ComponentsiOS
Labelsglossy, tabbar, tabgroup
ReporterMatej
AssigneeEric Merriman
Created2013-10-01T01:30:32.000+0000
Updated2017-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

FileDateSize
iOS Simulator Screen shot Oct 1, 2013 3.29.26 AM.png2013-10-01T01:30:32.000+000013974

Comments

  1. Matej 2013-12-06

    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
  2. Hans Knöchel 2017-06-28

    Not required to implement anymore, since iOS7+ will not have the blur-effect.
  3. Lee Morris 2017-08-16

    Closing with reference to the above observation.

JSON Source