Hello , i have a bug on TextCell in ListView and TableView , the propriety "Text" of the TextCell does not appear but other property like the property details of the TextCell work.
This problem occurs after updating xamarin form to the latest version (2.3.3.180) and it worked before (previous version : 2.3.1.114)
Code :
<ListView ItemsSource={Binding blabla} >
<ListView.ItemTemplate>
<DataTemplate>
<TextCell Detail="work" Text="Don't work">
</TextCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
Many Thanks ,
MartyG