Hi,
I want to separate the content of SfTabItem to another file. So, instead of:
<tabview:SfTabItem.Content>
<listView:SfListView x:Name="listView" ItemSize="70"
AutoFitMode="Height"
AllowSwiping="True"
ItemsSource="{Binding ContactsInfo}" >
......
</<tabview:SfTabItem.Content>
I want it to be something like:
<tabview:SfTabItem.Content>
<x:local myListItem />
</<tabview:SfTabItem.Content>
myListItem is another view class. Can it be done? How? Thanks.