When I use a Grid within a ViewCell of a ListView the items won't scale height anymore.
This can happen when, for example, some label within the grid has multi lines. (XAML like below)
`
<ListView ItemsSource={Binding Items} >
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell >
<ViewCell.View >
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width=120 />
<ColumnDefinition Width=Auto />
</Grid.ColumnDefinitions>
<Label Text={Binding Word}
Font=Medium
/>
<Label Text={Binding Description}
Font=Medium
Grid.Column=1 />
</Grid>
</ViewCell.View>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
`
Any suggestions anyone?