Yozef
Yozef

Reputation: 829

Flex 3 or 4. To have TabNavigator with the Button on the Bottom

Is it possible to place the Tabs on the bottom of a TabNavigator?

Currently, I want to see if Flex4 can create tabs for me positioned on the bottom.

Currently I can use library://ns.tink.ws/flex/mx for his positionedTabNavigator and yet it looks wonky, when I apply rounded corners on the tab, it rounds the wrong end.

Upvotes: 0

Views: 2131

Answers (1)

Dmitri
Dmitri

Reputation: 9157

There is no TabNavigator in Flex 4 (at least not a Spark component), you have to roll your own out of a TabBar and a ViewStack. So the good news is, you can put the TabBar anywhere you want.

Here's an example: http://devgirl.wordpress.com/2009/11/16/tabbed-navigation-in-flex-4/

Upvotes: 1

Related Questions