feat(ios-list-view): introduce iosEstimatedRowHeight property. (#5568)

* feat(ios-list-view): introduce iosEstimatedRowHeight property.

* chore(ui-tests-app): add test for auto measured ListView.
This commit is contained in:
Alexander Djenkov
2018-03-22 14:03:54 +02:00
committed by GitHub
parent 0012bfd4d8
commit 52c044891e
4 changed files with 41 additions and 5 deletions

View File

@ -51,5 +51,15 @@
</ListView>
</StackLayout>
<StackLayout class="p-10" row="3">
<Label text="ios-estimated-row-height" class="body m-b-10" />
<ListView items="{{ $value }}" iosEstimatedRowHeight="0">
<ListView.itemTemplate>
<Label text="{{ $value }}" />
</ListView.itemTemplate>
</ListView>
<Label text="after-auto-estimated-height" class="body m-b-10" />
</StackLayout>
</StackLayout>
</Page>