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