Questions tagged [tabbedpage]

TabbedPage widget used to create Tabbed pages for example in Xamarin, or in a technical jargon: hidden pages,each having button on the top,(all buttons or tabs are arranged horizontally) where first such page is visible, but in order to view other pages (one at at time), you have to click the associated button.

TabbedPage widget used to create Tabbed pages for example in Xamarin, or in a technical jargon: hidden pages,each having button on the top,(all buttons or tabs are arranged horizontally) where first such page is visible, but in order to view other pages (one at at time), you have to click the associated button.

233 questions
2
votes
1 answer

How to add content page or view before tabbed page

I want to add Page/View before TabbedPage, how can I do that?
R15
  • 13,982
  • 14
  • 97
  • 173
2
votes
3 answers

Xamarin Forms carousel with menu/tabs

I want do create something like TabbedPage but as a View with scrollable "menu" ( I will have about 8 tabs). How can I achive this? I was thinking about doing CarouselView and somehow to make a tabbed header, but I dont know how to make it good. Or…
Bartek Chyży
  • 521
  • 9
  • 25
2
votes
2 answers

How to bring a search tab on top tabbed page in xamarin forms?

I want to bring a search tab on top of a tabbed page in Xamarin Forms. This is the UI I want to implement. As you can see a search bar on top of tab vendor name and product/service. I don't know how to implement it. I have tried this…
user3452
  • 349
  • 5
  • 20
2
votes
3 answers

Where can I find ToolbarPlacement attribute of TabbedPage?

I'm trying to locate the Tabbing bar in the bottom of the screen in android and I already did in the C# code behind but I'm just wondering how to do that in the .xaml code? I've added the Xamarin.Forms.PlatformConfiguration.AndroidSpecific namespace…
Ahmed Salah
  • 851
  • 2
  • 10
  • 29
2
votes
0 answers

Xamarin Forms Icons not rendered correctly in TabbedPage

I am trying to get a TabbedPage to work correctly, i.e. I want the menu to be shown at the bottom:
Wolffi82
  • 47
  • 3
  • 7
2
votes
0 answers

Use a Control template with a Xamarin Forms Tabbed Page

This link describes how to setup a control template. The control template can be used inside the ContentPage declaration of a content page, as such: ControlTemplate="{StaticResource MainPageTemplate}" But the same cannot be done in a TabbedPage.…
2
votes
1 answer

Why the tabs are not in the bottom in Xamarin Forms?

Fellow Developers, I'm developing an app with Xamarin.Forms and I am using the latest version 3.1, which as far as I know it supports Bottom Tabs in Android. This is my code: XAML:
2
votes
1 answer

Changing color of tabbed bar icon and text in "More" tab section in xamarin forms ios

I am working on a Xamarin forms project. I have a tabbed page with 9 tabs. 4 tabs would show with description and icon in tab bar, and there is extra tab is added "More" which contains list of other tabs. In Appdelegate.cs file I set…
Sai Sunkari
  • 179
  • 3
  • 27
2
votes
0 answers

Xamarin Forms Android showing Tabbed Page inside Master Details Page is showing blank empty screen

In my Xamarin Forms application I am having Tabbed Page as first Detail page of Master Details Page. So, while running my Droid application it is showing empty blank screen for few seconds and after that it is showing the correct Tabbed Page.…
Jamal
  • 976
  • 2
  • 14
  • 39
2
votes
1 answer

Refresh command not working in Listview which is inside a Tabbed page in Xamarin.Forms

I have a tabbed page who's ItemSource has a binding with viewmodel to generate tabs dynamically. Below is the code snippet of…
Taha Ali
  • 1,150
  • 9
  • 14
2
votes
0 answers

Xamarin tabs navigation fault after removing a tab

While the following snippet is running (only in case the user is on tab [3] to begin with), the app acts differently depending the way the CurrentPage was changed: If the user swiped the screen from tab [3] to tab [2], tab [3] is removed as…
Ofaim
  • 41
  • 3
2
votes
0 answers

How Create Tabbed Page Renderer for iOS to not show "MORE" button ? instead Scroll-able Tab?

I want Scroll- able Tabbed page Renderer for iOS. like in Android tabbed pages they are default scroll-able.its ok if its in bottom
Chetan
  • 61
  • 5
2
votes
0 answers

Xamarin TabbedPage with different ToolbarItems for each ContentPage

I need to have different ToolbarItems for each ContentPage that are inside the main TabbedPage. I have tried with:
Hikari
  • 589
  • 7
  • 29
2
votes
1 answer

Swipe gesture for animated TabbedPage transition in Xamarin.Forms on iOS

In Xamarin.Forms, on iOS, how can I extend TabbedPage so that in addition to changing pages using the tabs at the bottom, the user can swipe left or right to change pages? Ideally, the page transition should be animated when swiping. None of the…
Edward Brey
  • 40,302
  • 20
  • 199
  • 253
2
votes
4 answers

Tab Bar doesn't show up on TabbedPage

I'm using Xamarin Forms on Visual Studios 2017. In my PCL, I've created a Tabbed Page and placed children pages inside. However, when I run my code and click on the Tabbed Page, only my first child page (UploadPage) is displayed. I don't see a tab…
user8332772
1 2
3
15 16