Disable bounce effect on CollectionView in your Xamarin.Forms iOS app

I noticed a StackOverflow question where the author was interested in disabling the bounce effect for CollectionView. They had a method for ListView, but was now looking on how to do it for CollectionView on iOS. I put together a small sample, let me tell you what I did. The Bounce Effect If you have … Read more

Implement grouping in the Xamarin.Forms ListView

Grouping ListView

Recently I have answered a question on StackOverflow, like I do a lot, and I thought I’d turn it into a blog post! Maybe I should make a series out of it.. In the meantime, the subject is: implementing grouping in a ListView. The sample code for this post can be found here: https://github.com/jfversluis/GroupingListViewSample Question The … Read more

iOS UITableViewCellStyle in Xamarin.Forms

UITableViewCellStyleHeader Featured Image

In the past week, a question came across on StackOverflow for which I created a sample project. The question was: how to make the detail text of a TextCell appear on the right? I started to answer the question, as I do a lot, and quickly came across the UITableViewCellStyle in iOS. I thought it would … Read more