Reputation: 829
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
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