c-lamont / PXTabs

MIT License
36 stars 5 forks source link

Not Maintained!

Xamarin Forms now implements the ability to create tab layouts. This package still works well if you want a more customized tab ayout.

PXTabs

NuGet

https://www.nuget.org/packages/Plugin.ProXamTabs

Implementation

All properties are bindable.

PXTabsView

  1. If implementing in Xaml, add the namespace xmlns:pxTabs="clr-namespace:Plugin.ProXamTabs.Shared;assembly=Plugin.ProXamTabs"".
  2. Add the view to your page, set the tab bar on top or bottom by setting IsTabBarOnTop:
    <pxTabs:PXTabsView
    x:Name="tabsView"
    BorderColor="Teal"
    SliderColor="Teal"
    IsBorderOnBottom="False"
    IsBorderVisible="True"
    IsSliderOnBottom="False"
    IsSliderVisible="True"
    IsTabBarOnTop="False"/>
  3. Create a list of PXTabs and and them to the tab view: tabsView.Tabs = [YourListOfTabs];, or bind the list directly. The PXTab is fully customisable:
    new PXTab()
    {
    TabId = 1,
    TabView = new HomeView(),
    Text = "Home",
    SelectedImage = "tab_home",
    UnselectedImage = "tab_home_gray",
    SelectedColor = Color.Gray,
    UnSelectedColor = Color.Black,
    TextSize = 12,
    ImageSize = 24,
    BadgeCount = 3,
    BadgeColor = Color.Blue
    };
  4. Setting the TabView property of a PXTab will be the view that will be shown when the tab is selected.

PXTabsLayout

If you do not want the PXTabsView to handle the switching of the views, you can simply use the PXTabsLayout which will give you the tab bar that you can place anywhere in your view. Use the Command<PXTab> TabSelectedCommand property to detect the change in tab selection.

Screenshots

iOS

alt text

Android

alt text