me again.
Does the HorizontalListView supports a empty view like the official Xamarin Forms CollectionView? Searched for a property but did not found one. Also tried the ControlTemplate way but the control does not have this property.
Next attempt was to subclass it and doing something like this:
if (ItemsSource == null || !ItemsSource.Any())
{
Children.Clear();
Children.Add(EmptyView)
}
Obviously this wasn't working either because there is no Children property.
Any ideas?
Hey,
me again. Does the HorizontalListView supports a empty view like the official Xamarin Forms CollectionView? Searched for a property but did not found one. Also tried the ControlTemplate way but the control does not have this property. Next attempt was to subclass it and doing something like this:
Obviously this wasn't working either because there is no Children property. Any ideas?