Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Created October 15, 2018 14:28
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/243ae853a2dc310f3c8c8e9f5b2a341c to your computer and use it in GitHub Desktop.
Save juucustodio/243ae853a2dc310f3c8c8e9f5b2a341c to your computer and use it in GitHub Desktop.
Example how to implement a Grouped ListView in Xamarin.Forms Applications - http://julianocustodio.com/GroupedListView
namespace GroupedListApp
{
public class Transporte
{
public string Nome { get; set; }
public string Descricao { get; set; }
public Transporte()
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment