CustomToast Library
Under development
Add this in your root build.gradle file (not your module build.gradle file):
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}Add this to your modules build.gradle file
dependencies {
compile 'com.github.chugh22:ButterToast:0.1.2'
}
new ButterToast.Builder(<Context>)
.build()
.setCornerRadius(10.5f)
.setTextColor(Color.WHITE)
.setIcon(<Drawable>)
.setText("Custom toast").makeToast().show() ;




