0

I am using Xamarin.Forms and trying to achieve the next layout:
Layout Image
I want to keep the native look and feel for each platform (i.e: iOS tabs will be shown in bottom.), I just want to add an extra image on top of the tabbed view. I have been looking around and can't find any one providing a way for this to work. I just want to make sure and ask if this is actually doable in Xamarin.Forms while maintaining native look and feel for all platforms?

Paul Karam
  • 4,052
  • 8
  • 30
  • 53
  • see the alternative answer here. https://stackoverflow.com/questions/31936157/xamarin-forms-tabbed-view – Emil Jul 12 '17 at 22:52

1 Answers1

0

Is not possible (using Xamarin Forms) to do this. TabbedPage is a Control that fills the entire display.

Here there is a interesting discussion about "TabView".

I think you can use some other controls to try to do the same thing. For example, buttons + CarouselView.

Otherwise on GitHub there are some guys that have tried to implement what you need.. TabView

Alessandro Caliaro
  • 5,623
  • 7
  • 27
  • 52