/IBackdrop

A library to simply setup a backdrop in your project

Primary LanguageKotlinApache License 2.0Apache-2.0

IBackdrop

A library to simply setup a backdrop in your project

Requirements

  • Android API level 16 or greater
  • Your favorite IDE

Setting up

Gradle:

Step 1. Add the JitPack repository to your build file. Add it in your root build.gradle at the end of repositories:

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

Step 2. Add the dependency

dependencies {
        ...
	    implementation 'com.github.pedromassango:IBackdrop:1.0.0-beta'
	    ...
	}

Maven:

Step 1. register jitpack.io

<repositories>
	<repository>
	    <id>jitpack.io</id>
	    <url>https://jitpack.io</url>
	</repository>
</repositories>

Step 2. Add the dependency

<dependency>
    <groupId>com.github.pedromassango</groupId>
    <artifactId>IBackdrop</artifactId>
    <version>1.0.0-beta</version>
</dependency>

Basic usage

I wrote a step by step for how to use this library on Medium, follow the link: https://medium.com/@pedromassango/android-material-design-components-backdrop-96a3044a3b2