Removing gradient from title barcolor

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

Titanium automatically adds a gradient to the background color of the title bar of the window. However, I want a pure black background.

var masterContainerWindow = Ti.UI.createWindow({
        barColor: 'black',
    });
Is the only way to avoid this to use a black image as backgroundImage?

1 Answer

Accepted Answer

Yes, the only way to remove the gradient is to use a flat colored background image.

Your Answer

Think you can help? Login to answer this question!