I'm working with an application using Xamarin Forms, and I've started transitioning to using SfTabView for my app content on one particular page.
The data I'm attempting to show is not a list, but rather a particular set of views. I've tried warpping them in a StackLayout, a ScrollView and an AbsoluteLayout but no matter what I try, I can't get anything to show although I can tell the TabView is being created since the background color is being displayed and my title is being populated based on my ViewModel.
<ContentPage.Content>
<AbsoluteLayout
HorizontalOptions="FillAndExpand"
VerticalOptions="FillAndExpand">
<tabView:SfTabView
AbsoluteLayout.LayoutBounds="05.,0.5,1,1"
AbsoluteLayout.LayoutFlags="All"
BackgroundColor="Aqua"
EnableSwiping="True"
TabHeaderPosition="Bottom"
SelectionChanged="Handle_SelectionChanged"
VisibleHeaderCount="3"
DisplayMode="Text">
<tabView:SfTabItem Title="Details">
<tabView:SfTabItem.Content>
<StackLayout >
// Content Here
</StackLayout>
</tabView:SfTabItem.Content>
</tabView:SfTabItem>
</tabView.SfTabView>
</AbsoluteLayout>
</ContentPage.Content>