Closed
Description
Test application to demonstrate the issue here
E.g.
<TabView #tv iosIconRenderingMode="alwaysTemplate" (selectedIndexChange)="onIndexChange($event)" selectedTabTextColor="green">
<StackLayout *tabItem="myFirstItem">
<Label text="First tap" textWrap="true"></Label>
</StackLayout>
<StackLayout *tabItem="mySecondItem">
<Label text="Second tab item"></Label>
</StackLayout>
<StackLayout *tabItem="myThirdItem">
<Label text="Third tab item"></Label>
</StackLayout>
</TabView>
where myFirstItem is tabItem object of the follwing kind
this.myFirstItem = { title: "Selected", iconSource: "~/images/logo.png" };
Result: Changing the value via binding won't be respected