I'm trying to create a ListView with Xamarin Forms. The RowHeight for each of the list element may very dynamically when it is populated.
Please let me know how we can set the RowHeight of the list item dynamically.
var StatusList = new ListView
{
HorizontalOptions = LayoutOptions.FillAndExpand,
VerticalOptions = LayoutOptions.FillAndExpand,
RowHeight = Constants.CategoryRowHeight + 60,
BackgroundColor = Constants.BackgroundColor,
ItemTemplate = GetDataTemplate()
};