Xamarin Forms ListView for iOS: Always Show ScrollBar
问题 I have a ProductList of type ObservableCollection<Product> where Product is a class given below: public class Product { public int Id { get; set; } public string Name { get; set; } public string Path { get; set; } } In my Xamarin Forms iOS Application, I have a ListView whose ItemSource is ProductList . When number of Products in the ProductList is so that the height of ListView is not enough to show all of them, additional items can be reached by scrolling the ListView . However, I want the