I'm using SfTabView (version 19.3.0.43) and populating its Items in my ViewModel based on the suggestion here: https://www.syncfusion.com/forums/136265/contentpage-as-tab-view-item
<tabView:SfTabView Items="{Binding Items}" TabHeaderPosition="Bottom" DisplayMode="ImageWithText">
</tabView:SfTabView>
Items = new TabItemCollection();
Items.Add(new SfTabItem { Content = picksMenuView.Content, Title = "PoolMgmtMenu_Picks".Translate(), ImageSource = "ic_group_work_grey_500_24dp" });
Items.Add(new SfTabItem { Content = standingsMenuView.Content, Title = "PoolMgmtMenu_Standings".Translate(), ImageSource = "ic_list_grey_500_24dp" });
Items.Add(new SfTabItem { Content = groupMenuView.Content, Title = "PoolMgmtMenu_Group".Translate(), ImageSource = "ic_group_grey_500_24dp" });
Items.Add(new SfTabItem { Content = financesMenuView.Content, Title = "PoolMgmtMenu_Finances".Translate(), ImageSource = "ic_attach_money_grey_500_24dp" });
Items.Add(new SfTabItem { Content = infoMenuView.Content, Title = "PoolMgmtMenu_Info".Translate(), ImageSource = "ic_info_grey_500_24dp" });
I was able to reproduce the issue on iOS on top of the sample project provided in this thread: https://www.syncfusion.com/forums/136265/contentpage-as-tab-view-item. Attaching the zip file for that.
|
<sfTabs:SfTabView TabHeight="100" /> |
This seems to work. Thank you!