Skip to content

isagardb/DropToast

Repository files navigation

DropToast

License platform API

Demo Images

alt text alt text

Dependency

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

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

Add dependency in your app module

dependencies {
	 implementation 'com.github.IamSagarDB:DropToast:0.2.1'
	}
}

Usage

Java

 DropToast.makeText(MainActivity.this," Your message ",DropToast.LONG,DropToast.SUCCESS);

Features

Duration

For Long duration.

DropToast.LONG 

For short duration.

DropToast.SHORT

Type

for SUCCESS message

DropToast.SUCCESS 

for ERROR message

DropToast.ERROR

for WARNING message

DropToast.WARNING

for DEFAULT message

DropToast.DEFAULT

for CONFUSED message

DropToast.CONFUSED

License

Copyright 2018 DropCodes

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

 http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.