Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Created October 15, 2018 14:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juucustodio/a9f27182c45ee53d1d10a869f006795f to your computer and use it in GitHub Desktop.
Save juucustodio/a9f27182c45ee53d1d10a869f006795f to your computer and use it in GitHub Desktop.
Example how to implement a Grouped ListView in Xamarin.Forms Applications - http://julianocustodio.com/GroupedListView
using System.Collections.ObjectModel;
namespace GroupedListApp
{
public class Categoria : ObservableCollection<Transporte>
{
public string LongName { get; set; }
public string ShortName { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment