Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 842 Bytes

README.md

File metadata and controls

42 lines (33 loc) · 842 Bytes

Pablo

Pablo is simple and easy to use image loading library for android

Setup

1. Provide the gradle dependency

Add it in your root build.gradle at the end of repositories:

	allprojects {
		repositories {
			maven { url 'https://jitpack.io' }
		}
	}

Add the gradle dependency to your app module build.gradle file:

	dependencies {
	   implementation 'com.github.ajithvgiri:pablo:v0.0.1'
	}

2. Initialization of the Pablo library

Java

    Pablo pablo = new Pablo(context);
    pablo.setCompress(false); // default value is true
    pablo.displayImage("imageUrl", imageView)

Kotlin

    val pablo = Pablo(context)
    pablo.isCompress = false 
    pablo.displayImage(imageUrl, fullscreen_imageView)

Screen Shots

Pablo