Now I want to hidden all Tabs in TabbedPage on Android.
It should hidden UI only and still working.
I try research on google already, but it cannot solve my issues.
If have someone know how to hide that, please tell me how to do.
Application in current
I want like this
Code on iOS in CustomTabbedPageRenderer.cs
public override void ViewDidLayoutSubviews()
{
base.ViewDidLayoutSubviews();
if (View == null) return;
CGRect rect = View.Frame;
TabBar.Hidden = true;
((Page)Element).ContainerArea = new Rectangle(0, 0, rect.Width, rect.Height);
}
Thanks for the answer in advance.