Im looking for a way to disable a tab within a TabbedPage, here my example of two tabs
<?xml version="1.0" encoding="utf-8" ?>
<?xml version="1.0" encoding="utf-8" ?>
<TabbedPage xmlns=".."
xmlns:x=".."
x:Class="App.Views.Pages_Tabbed"
x:Name="myTabs"
xmlns:page="clr-App.Views">
<TabbedPage.Children>
<page:MemberShip x:Name="firstPage" ></page:MemberShip>
<page:Consent x:Name="secondPage"></page:Consent>
<page:Question x:Name="thirdPage"> </page:Question >
</TabbedPage.Children>
</TabbedPage> ```
I tried to set the Page to IsEnabled = false or IsVisible= false but not working .. it hide only content.
Also i followed https://stackoverflow.com/questions/54657758/how-to-set-the-currentpage-property-of-a-tabbedpage-in-the-oncurrentpagechanged but it crash the app cuz of the infinite loop.