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