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
0
votes
1 answer

Adding my own pages to bottom navigation

I'm following this guide (https://15mgm15.ghost.io/2018/06/06/bottom-tabbed-page-for-xamarin-forms-android/) but I cant figure out how to add the pages I've added to the project. I need to add something here in order for the app to understand which…
KalleP
  • 319
  • 4
  • 16
0
votes
0 answers

Creating menuitems in xamarin.ios on a tabbed page using MvvmCross

I am creating a mobile app for android and ios using xamarin and MVVMCross. In android I have created a tabbed page with 3 tabs using viewpager and toolbar.I have menuitems in the toolbar like Save,Sync etc. on click of which will save the content…
Santosh
  • 65
  • 7
0
votes
1 answer

Xamarin Forms - Navigation.PopAsync() not working

I have a tab page i've set to the main page in xamarin forms: App.Current.MainPage = new MainPage(); MainPage is a tabbed page: public partial class MainPage : TabbedPage {.... Within the tabbedPage there is a content page, which has a button…
0
votes
1 answer

How to change the size of Tab item in Xamarin.forms

I have created a TabbedPage using data template. And its working fine in all 3 platforms (iOS,Android and UWP). In UWP app, Tab sizes are not consumes the screen width. In here you can see the last tab has extra spaces. How can I make the tabs…
swift droid
  • 107
  • 1
  • 14
0
votes
0 answers
0
votes
1 answer

Xamarin Forms android tabpage custom renderer different colors

I am trying to create a CustomRenderer for Android TabbedPage with a different color for the last tab. However, the following code fails to work. How can I fix this? protected override void OnVisibilityChanged(Android.Views.View changedView,…
Sertil
  • 1
  • 4
0
votes
1 answer

Exception when using SkiaSharp API in Xamarin Forms Tabbed Page

I'm facing some problems at the time of painting a circle with the SkiaSharp API in one of the children pages of a Tabbed Page in Xamarin Forms. Although I get no errors during the building of the project, whenever I enter the page in which the…
I. Mendoza
  • 13
  • 4
0
votes
2 answers

How to perform SetBinding and BindingContext in a XAML page?

I'm currently trying to develop an application based on a Xamarin Forms Tabbed Page. At first, the application had only one Content Page writen in C#. What I want to do now is to implement this existing Content Page into one of the tabs of the…
I. Mendoza
  • 13
  • 4
0
votes
1 answer

OnAppearing method of the first child page of a TabbedPage called twice

I have a TabbedPage with two child pages PageA and PageB (in the same order). On starting the tabbed page, PageA's OnAppearing method is called twice. How do I prevent this from happeinng? Here's the sample code for the TabbedPage:
chaosifier
  • 2,666
  • 25
  • 39
0
votes
1 answer

Is it possible to add a tabbed page in a master detail detail page?

I need to make something like the picture below. Is adding a tabbed page in a detail page in master detail possible? I keep getting invalid cast t error whenever I try. Help please Tried this code with webview but getting invalid cast…
Scar
  • 725
  • 2
  • 7
  • 28
0
votes
0 answers

Xamarin Forms Tabbed page cannot change tab background color

I have a Xamarin.Forms tabbed page. When I do the following: public partial class MainPage : TabbedPage { public MainPage() { InitializeComponent(); BarTextColor = Color.White; BarBackgroundColor =…
Michael Bedford
  • 1,742
  • 20
  • 48
0
votes
1 answer

Xamarin Forms UWP Phone Device TabbedPage - How to underline selected tab and stretch tabs to fill screen?

I have a cross-platform Xamarin Forms application with a PCL, Android, iOS, and UWP projects. In the UWP project, I am trying to style a tabbed page to where the selected tab is underlined as in the Android project, and the tabs take up the space on…
tsabra
  • 29
  • 3
0
votes
1 answer

How Do I get a webpage to display inside a tabbed page?

Is there a way to display webpages as tabbed page? The tabbed page has 2 tabs. One for about and one for contact, Is it possible to put the content of the tabbed page as just a url like "www.example.com/about" or "www.example.com/contact"?…
Scar
  • 725
  • 2
  • 7
  • 28
0
votes
1 answer

Xamarin Forms Prism Navigation from TabbedPage behaves as PushModelAsync or the navigation bar disappears

In Tabbed page sample given by Prism, I want to navigate from ViewA (first tab) to ViewD(not the next tab but next navigation page). I don't understand why this removes the navigation bar on the…
Akshay Kulkarni
  • 729
  • 6
  • 22
0
votes
1 answer

Xamarin Forms : TabbedPage Issue. Exception in Main Activity.cs in Android project when adding children

I am building a cross-platform application with Xamarin forms(PCL). All is good, though when I use a TabbedPage and add children to it I get the following exception in MainActivity.cs in the Android project : at…