BindableLayout public static class BindableLayout Static class specifying the attached properties that allow a Layout<T> work with a data-bound IEnumerable. Documentation Code public static readonly BindableProperty EmptyViewProperty public static readonly BindableProperty EmptyViewTemplateProperty public static readonly BindableProperty ItemsSourceProperty public static readonly BindableProperty ItemTemplateProperty public static readonly BindableProperty ItemTemplateSelectorProperty public static object GetEmptyView(BindableObject b) public static DataTemplate GetEmptyViewTemplate(BindableObject b) public static IEnumerable GetItemsSource(BindableObject b) public static DataTemplate GetItemTemplate(BindableObject b) public static DataTemplateSelector GetItemTemplateSelector(BindableObject b) public static void SetEmptyView(BindableObject b, object value) public static void SetEmptyViewTemplate(BindableObject b, DataTemplate value) public static void SetItemsSource(BindableObject b, IEnumerable value) public static void SetItemTemplate(BindableObject b, DataTemplate value) public static void SetItemTemplateSelector(BindableObject b, DataTemplateSelector value)