Plugin.GridViewControl
1.0.6
See the version list below for details.
dotnet add package Plugin.GridViewControl --version 1.0.6
NuGet\Install-Package Plugin.GridViewControl -Version 1.0.6
<PackageReference Include="Plugin.GridViewControl" Version="1.0.6" />
paket add Plugin.GridViewControl --version 1.0.6
#r "nuget: Plugin.GridViewControl, 1.0.6"
// Install Plugin.GridViewControl as a Cake Addin #addin nuget:?package=Plugin.GridViewControl&version=1.0.6 // Install Plugin.GridViewControl as a Cake Tool #tool nuget:?package=Plugin.GridViewControl&version=1.0.6
GridView control for Xamarin.Forms
Product | Versions Compatible and additional computed target framework versions. |
---|---|
MonoAndroid | monoandroid10 is compatible. |
Universal Windows Platform | uap10 is compatible. |
Xamarin.iOS | xamarinios10 is compatible. |
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 | 4,102 | 12/10/2018 |
1.0.11 | 7,590 | 8/15/2018 |
1.0.10 | 5,023 | 6/28/2018 |
1.0.9 | 1,776 | 4/16/2018 |
1.0.8 | 1,607 | 3/28/2018 |
1.0.7 | 2,496 | 10/19/2017 |
1.0.6 | 2,028 | 5/29/2017 |
1.0.5 | 1,542 | 5/29/2017 |
1.0.4 | 1,544 | 5/29/2017 |
1.0.3 | 1,527 | 5/29/2017 |
1.0.2 | 1,472 | 5/29/2017 |
1.0.1 | 1,529 | 5/29/2017 |
1.0.0 | 1,525 | 5/29/2017 |
InitialRelease
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.