Reputation: 235
I'm trying to write a simple mobile application.
I want a design like this:
I need a tip about - what is type of page i need to use? I need Master Detail page (for the menu in left side).
But I just don't know how I can do 3 tabs in top of screen Its not a tabbed page because I want to use in iPhone (on top) and Android same design. How i can to do this?
Thank you
Upvotes: 2
Views: 1004
Reputation: 7850
To have the menu behavior you have to use a Master Detail Page.
As you told the TabbedPage tabs will be rendered in the bottom of iOS and in the top in Android. If you want to always have the tabs in the top I suggest you tu use a CarouselPage and implemented the tab bar manually.
You have another option that violates iOS UI principles that I don't recommend, but you could try to use a CustomRenderer for the TabbedPage and then use this hack.
Upvotes: 2