Hi, I have the following TabbedPage on my project:
<TabbedPage
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="DelphosMobile.IndicadorTabs"
xmlns:local="clr-namespace:DelphosMobile"
xmlns:local2="clr-namespace:DelphosMobile.Controllers">
<local:IndicadorDetalle Icon="indicadores"/>
<local:Responsables Icon="responsable"/>
<local2:PlanesAccion Icon="planes"/>
<local2:Presupuestos Icon="presupuesto"/>
<local2:CamposAdicionales Icon="campos"/>
</TabbedPage>
local and local2 make reference to the corresponding pages. When I run the app, the Tabbed page shows as expected.
I want to implement the SFTabView control, but I can't find any documentation/example in how to load a page as the TabItem.content, only controls.
Any help to get this done will be welcome.
Andres.