Hello
I am using Syncfusion.Xamarin.SfTabView v17.2.0.41.
Is it possible to Bind all the SfTabItems with MVVM? If so, could you please provide an example where the Items are set in the model?
I tried something, but it does not display anything. Any help would be greatly appreciated.
MyPage.xaml
<tabView:SfTabView Items="{Binding Items}"></tabView:SfTabView>
MyPageModel.cs
public TabItemCollection Items = new TabItemCollection();
...
var ti = new SfTabItem();
var view = new StackLayout();
view.Children.Add(new Label { Text = "hello" });
ti.Content = view;
ti.Title = "tab1";
Items.Add(ti);
Kind regards
Phil