how to style tab bar icon alloy tatanium? - titanium

How to style the icons in the tab bar in tabbed view project.
because when i put a *.png icons , the icons appear as gray in inactive tabs , and blue in the active tab, how to display it as it is.
<Tab title="Tab 1" icon="setting.png">
<Window title="Tab 1">
<Label>I am Window 1</Label>
</Window>
</Tab>
and how to add fonts icons to the tab icons ?

#mahmoud gamal Well, there's no a good way to style the tab bar in Titanium, it's hard to change the system-default-style of tab bar. The problem you had mentioned that the inactive tab will be grey and the active tab will be blue, well this the system style of the tab bar, you can check here for more details.
However, you can set property activeIcon of tab bar to change it's active state style, but it's only support for IOS. If you want to get the tab bar more various style, we recommend you just define a view like the tab bar to accomplish what you want. And, pay attention to this that the tab embed with window will display at different position in Android(show at the top of he window) and IOS(show at the bottom at the window).

Related

How to make modal behind the bottom tab bar in React Native

I created a bottom tab bar, when press on the bottom tab bar, will toggle a modal. Now my modal is blocking the bottom tab bar, so I am not able to press on the bottom tab bar to close my modal.
Any solution for this? I've tried zIndex, and adjust the marginBottom for the modal (move it up), but both are not working
Unfortunatelly, you can not do this. As told in this piece of documentation:
A modal displays content that temporarily blocks interactions with the main view.
So this is indeed the expected behavior.
Did you try with
fullScreen={false}
transparent={true}
then set margin-bottom

How to hide grey background color on click (react-native-popup-menu)

I'm using React native popup menu and on click I have a grey background color that appears on the menu.
So i read the docs and it says to change customStyles in Menu Trigger but I tried many different things and it doesn't work.
I just want that when I press the menu I have no background color.

WebStorm navigate bar setting?

I need to change my WebStorm nav bar style from first into second:
The first does not contain file tab, as well as I can not split vertically file.
How can I do this?
I need to change my WebStorm nav bar style
It's not a "nav bar" -- it's Editor Tabs bar.
The actual Navigation Bar is present on both screenshots and it is just above it (the bar that shows new.OrderList.js in it on first screenshot).
In any case: the Editor Tabs bar can be re-enabled again at:
Settings/Preferences
Editor | General | Editor Tabs
Set Placement to be anything else than "None" -- to be as on 2nd screenshot it should be set to "Top"

How do you add a button to the "navigation bar" in IntelliJ?

By default, in IntelliJ, the main toolbar is hidden. When it is hidden, there are essential buttons that are shown in the navigation bar. I don't need the full toolbar, but it would be nice to be able to add a single button to the navigation bar.
How do you add a button to the navigation bar?
You can customize any menu or toolbar in IDEA in settings by going to:
Settings-> Appearance and Behavior -> Menus and Toolbars
The item you are looking for is called
Navigation Bar Toolbar

Making the Name of the App appear in the Menubar (top-left corner) when the App is LSUIElement

How would I make the name of the app appear here ( like with a normal app )…
alt text http://snapplr.com/snap/6sgc
… when the app is an LSUIElement.
My Problem is that when the App is LSUIElement the name is not by default displayed in the menu bar like an normal app. Basically all I want LSUIElement to do is to hide the dock icon not the name in the menu bar.
For those who's native language isn't English, when I say 'App' i mean 'Application'.
Thanks.
Don't do this; it's not what users expect. A dock icon and menu bar go together. If you want to get both a dock icon and menu bar icon in your UIElement app, use TransformProcessType.
If you really must, you can draw your own menu bar window (if you use the appropriate window level it'll appear over the top of the existing menu bar).