Tabless application?

You must Login before you can answer or comment on any questions.

Hi,

I am trying to develop a one window application (there will be no tab bar, but you will be able to go to other "places" via modals and stuff.

is this possible? all the examples I see they use tabGroup.open in order to "show" the first window in a tabbed application

1 Answer

Accepted Answer

Hi, This is what I do:

//Window constructor var win1 = Titanium.UI.createWindow({
title:'TITLE HERE', backgroundColor:'#fff', navBarHidden: true, tabBarHidden: true

});

//Tab contructor (hidden) var tab1 = Titanium.UI.createTab({
title:'', window:win1, navBarHidden: true, tabBarHidden: true

});

Your Answer

Think you can help? Login to answer this question!