Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Commit

Permalink
set the RowHeight to prevent listview from being greedy (#12346)
Browse files Browse the repository at this point in the history
  • Loading branch information
t-johnson authored Sep 22, 2021
1 parent d831f11 commit 8426694
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ protected override void Init()
var testListView = new ListView();
var items = new[] { "Foo" };
testListView.ItemsSource = items;
testListView.RowHeight = 23;
testListView.ItemTemplate = new DataTemplate(() =>
{
var result = new ViewCell
Expand Down

0 comments on commit 8426694

Please sign in to comment.