https://github.com/rightek/square.picasso
Xamarin Android binding for Picasso, a powerful image downloading and caching library for Android
https://github.com/rightek/square.picasso
okhttp okhttp3 okio picasso picasso-library square xamarin xamarin-android xamarin-android-binding xamarin-binding
Last synced: 3 months ago
JSON representation
Xamarin Android binding for Picasso, a powerful image downloading and caching library for Android
- Host: GitHub
- URL: https://github.com/rightek/square.picasso
- Owner: rightek
- License: mit
- Created: 2019-08-24T10:51:22.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-09T11:20:25.000Z (over 5 years ago)
- Last Synced: 2025-05-31T11:26:26.678Z (4 months ago)
- Topics: okhttp, okhttp3, okio, picasso, picasso-library, square, xamarin, xamarin-android, xamarin-android-binding, xamarin-binding
- Language: C#
- Homepage:
- Size: 114 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rightek.Square.Picasso
Xamarin Android binding for [Square Picasso](https://github.com/square/picasso) (A powerful image downloading and caching library for Android)
This project is based on [this repo](https://github.com/mattleibow/square-bindings), we use `Picasso` in our projects, so we'll keep this repo up to date with [original (_java_) repo](https://github.com/square/picasso). _current version `2.71828`_
## Usage
```cs
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 | [](https://www.nuget.org/packages/Rightek.Square.Picasso) | [](https://www.nuget.org/stats/packages/Rightek.Square.Picasso?groupby=Version) |
| Rightek.Square.OkHttp3 | [](https://www.nuget.org/packages/Rightek.Square.OkHttp3) | [](https://www.nuget.org/stats/packages/Rightek.Square.OkHttp3?groupby=Version) |
| Rightek.Square.Okio | [](https://www.nuget.org/packages/Rightek.Square.Okio) | [](https://www.nuget.org/stats/packages/Rightek.Square.Okio?groupby=Version) |## Dependencies
- [Xamarin binding for Okio](https://github.com/rightek/square.okio)
- [Xamarin binding for OkHttp](https://github.com/rightek/square.okhttp)## License
MIT---
Made with ♥ by people @ [Rightek](http://rightek.ir)