Hi!
I'm tried the SfTabView control and have the problem that horizontal swiping is not working.
I set the EnableSwiping to True.
My example (like on demo page):
<tabView:SfTabView VerticalOptions="FillAndExpand" EnableSwiping="True" >
<tabView:SfTabItem Title="Artikel">
<tabView:SfTabItem.Content>
<Grid BackgroundColor="Yellow" x:Name="FavorittresGrid" />
</tabView:SfTabItem.Content>
</tabView:SfTabItem>
<tabView:SfTabItem Title="Favorites">
<tabView:SfTabItem.Content>
<Grid BackgroundColor="Green" x:Name="FavoritesGrid" />
</tabView:SfTabItem.Content>
</tabView:SfTabItem>
</tabView:SfTabView>
Thanks and regards