Plugin.GridViewControl 1.0.7

There is a newer version of this package available.
See the version list below for details.
dotnet add package Plugin.GridViewControl --version 1.0.7
NuGet\Install-Package Plugin.GridViewControl -Version 1.0.7
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Plugin.GridViewControl" Version="1.0.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Plugin.GridViewControl --version 1.0.7
#r "nuget: Plugin.GridViewControl, 1.0.7"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Plugin.GridViewControl as a Cake Addin
#addin nuget:?package=Plugin.GridViewControl&version=1.0.7

// Install Plugin.GridViewControl as a Cake Tool
#tool nuget:?package=Plugin.GridViewControl&version=1.0.7

GridView control for Xamarin.Forms

Product Compatible and additional computed target framework versions.
MonoAndroid monoandroid10 is compatible. 
Universal Windows Platform uap10 is compatible. 
Xamarin.iOS xamarinios10 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.12 3,991 12/10/2018
1.0.11 7,547 8/15/2018
1.0.10 4,997 6/28/2018
1.0.9 1,748 4/16/2018
1.0.8 1,585 3/28/2018
1.0.7 2,469 10/19/2017
1.0.6 2,001 5/29/2017
1.0.5 1,519 5/29/2017
1.0.4 1,512 5/29/2017
1.0.3 1,502 5/29/2017
1.0.2 1,436 5/29/2017
1.0.1 1,507 5/29/2017
1.0.0 1,500 5/29/2017

Pull to refresh support added.

there are some issues on ios at the moment.

1. The renderer doesn't appear to get loaded unless you reference it in your appdelegate in some way

.e.g.
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
      {
          global::Xamarin.Forms.Forms.Init();
          var x = typeof(Plugin.GridViewControl.iOS.Renderers.GridViewRenderer);
          LoadApplication(new App());

          return base.FinishedLaunching(app, options);
      }

2. For some reason the selection state xib has become mandatory. So currently you need to manually add the statelist_item_background.xib from the git repo to your ios project. I haven't figured out how to do this with the nuget package manager yet.