Xamarin.Forms CollectionView Alternating Row Colors

Very quick Xamarin How-To this week with a simple converter. Alternating row colours in a CollectionView is quite often a design requirement and I wanted to create a simple, reusable converter to solve this. The Converter using System; using System.Globalization; using System.Linq; using Xamarin.Forms; namespace XhtCollectionViewAlternatingRowColor.Converters { public class IndexToColorConverter : IValueConverter { public Color

By |2025-04-12T18:35:43+10:00October 15th, 2021|Categories: Xamarin.Forms|Tags: , , |2 Comments

Xamarin.Forms Maps – Getting Location & Radius of User’s Input

  Recently I have had to navigate through Xamarin.Forms Maps for a project.  After some documentation reading I found that XF Maps does not offer a lot of the customisation and functionality of the native map libraries (MapKit and Google Maps).  This left me having to write some custom renderers to complete the project's requirements.

By |2025-04-12T18:40:23+10:00October 7th, 2021|Categories: Xamarin.Forms|Tags: , , |0 Comments
Go to Top