Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 1.18 KB

README.md

File metadata and controls

26 lines (19 loc) · 1.18 KB

glide-fluent-transformations

CircleCI Download

Glide fluent transformation is a library written in Kotlin that allows you to add extra bitmap transformations to your code with a fluent syntax beyond the Glide core transformations

Set Up

Add the next dependency in the build.gradle of the android module where you want to use this library:

implementation "com.vjgarcia:glide-fluent-transformations:0.0.4"

Usage

Kotlin

Use library transformations as Glide usual transformations

Glide.with(this)
     .load(anyURI)
     .topCrop()
     .into(anyImageView)

Java

TBD

Sample project

You can check an example of the library usage at app module of this project