c-lamont / PXTabs

MIT License
36 stars 5 forks source link

Implementing PCTabsLayout #27

Closed MikeStoneMax closed 6 years ago

MikeStoneMax commented 6 years ago

Do you have any examples of the implementation of the PXTabsLayout? I'm trying to create Tabs on the bottom of the view without the Title bar on the top.

c-lamont commented 6 years ago

Hey @MikeStoneMax thanks for the message.

The bar at the top is not part of the PXTabsLayout. I think you are referring to the navigation bar.

To remove it add NavigationPage.HasNavigationBar="false" in your ContentPage in xaml.

<ContentPage NavigationPage.HasNavigationBar="false"
    ..... >
</ContentPage>

If you are not using xaml, then add this in the Page constructor NavigationPage.SetHasNavigationBar(this, false);

Let me know if this is what you are looking for and if it works for you.

MikeStoneMax commented 6 years ago

Thanks, Chris this helped a lot!