Skip to content

Instantly share code, notes, and snippets.

View veryhumble's full-sized avatar

Jan veryhumble

View GitHub Profile
@veryhumble
veryhumble / HeaderViewCell.cs
Last active January 15, 2018 10:45
HeaderViewCell Renderer
using Xamarin.Forms;
namespace A11YGuide.Controls
{
public class HeaderViewCell : ViewCell
{
}
}
@veryhumble
veryhumble / RecyclerViewAdapter.cs
Last active August 5, 2021 19:13
Xamarin.Forms RecyclerView Renderer for Android
using System.Collections;
using System.Diagnostics;
using A11YGuide.Controls;
using A11YGuide.Droid.Helpers;
using A11YGuide.ViewModels.Search;
using Android.Support.V7.Widget;
using Android.Views;
using Android.Widget;
using fivenine.Core.Extensions;
using Xamarin.Forms;