From the Help Page...
The ListView provides UI virtualization, which requires the visual parent to provide vertical or horizontal space. To avoid breaking UI virtualization or gesture mechanisms:
- Do not place the ListView inside a
StackLayout
or inside aScrollView
. - Do not set the ListView to a
RowDefinition Height="Auto"
Grid definition.
Does this mean that a ListView cant be placed as a child of a Scroll View under any circumstance, or its immediate parent cant be a ScrollView? Same question for the Grid RowDefinition. If using nested grids, must all parent grids rows have a Height specified, or is it only the immediate parent? Also is * ok for the Height?
Seems like ListView is severely limited to being the only control on the page/view if this is the case.