rightek / square.picasso

Xamarin Android binding for Picasso, a powerful image downloading and caching library for Android

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Rightek.Square.Picasso

Xamarin Android binding for Square Picasso (A powerful image downloading and caching library for Android)

This project is based on this repo, we use Picasso in our projects, so we'll keep this repo up to date with original (java) repo. current version 2.71828

Usage

Picasso.Get()
	.Load("http://example.com/images/slider.jpg")
	.Placeholder(Resource.Drawable.loading)
	.Fit()
	.CenterCrop()
	.NoFade()
	.Error(Resource.Drawable.error)
	.Into(myImageView);

Nuget

PM> Install-Package Rightek.Square.Picasso

Package Name NuGet Downloads
Rightek.Square.Picasso nuget stats
Rightek.Square.OkHttp3 nuget stats
Rightek.Square.Okio nuget stats

Dependencies

License

MIT


Made with ♥ by people @ Rightek

About

Xamarin Android binding for Picasso, a powerful image downloading and caching library for Android

License:MIT License


Languages

Language:C# 100.0%