A Beautiful Motion Toast Library for Kotlin Android
Motion Toast
A Beautiful Multipurpose Motion Toast Library in Android using Kotlin.
Preview - Motion Toast ?
Preview - Color Motion Toast ?
Preview - Dark Toast ?
Preview - Dark Color Toast ?
Types of Toast Style ❤️
1. Motion Toast | 2. Color Motion Toast | 3. Dark Toast | 4. Dark Color Toast |
---|---|---|---|
About
A Beautiful Multipurpose Motion Toast Library in Android using Kotlin.
Dependency Project Level
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' }
}
}
Dependency App Level
Add dependency in your app module
dependencies {
implementation 'com.github.Spikeysanju:MotionToast:1.1'
}
Five Toast Types
1. TOAST_SUCCESS
2. TOAST_ERROR
3. TOAST_WARNING
4. TOAST_INFO
5. TOAST_DELETE
Toast Duration ⌛️
1. LONG_DURATION // 4 Seconds
2. SHORT_DURATION // 2 Seconds
Usage
Sample Code for - Motion Toast ?
Success Toast
MotionToast.createToast(this,"Upload Completed!",
MotionToast.TOAST_SUCCESS,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
Error Toast
MotionToast.createToast(this,"Profile Update Failed!",
MotionToast.TOAST_ERROR,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
Warning Toast
MotionToast.createToast(this,"Please fill all the details!",
MotionToast.TOAST_WARNING,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
Info Toast
MotionToast.createToast(this,"This is information toast!",
MotionToast.TOAST_INFO,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
Delete Toast
MotionToast.createToast(this,"Delete all history!",
MotionToast.TOAST_DELETE,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
Sample Code for - Color Motion Toast ?
Success Toast
MotionToast.createColorToast(this,"Upload Completed!",
MotionToast.TOAST_SUCCESS,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
Error Toast
MotionToast.createColorToast(this,"Profile Update Failed!",
MotionToast.TOAST_ERROR,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
Warning Toast
MotionToast.createColorToast(this,"Please fill all the details!",
MotionToast.TOAST_WARNING,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
Info Toast
MotionToast.createColorToast(this,"This is information toast!",
MotionToast.TOAST_INFO,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
Delete Toast
MotionToast.createColorToast(this,"Delete all history!",
MotionToast.TOAST_DELETE,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
Sample Code for - Dark Toast
Success Toast
MotionToast.darkToast(this,"Upload Completed!",
MotionToast.TOAST_SUCCESS,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
Error Toast
MotionToast.darkToast(this,"Profile Update Failed!",
MotionToast.TOAST_ERROR,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
Warning Toast
MotionToast.darkToast(this,"Please fill all the details!",
MotionToast.TOAST_WARNING,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
Info Toast
MotionToast.darkToast(this,"This is information toast!",
MotionToast.TOAST_INFO,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
Delete Toast
MotionToast.darkToast(this,"Delete all history!",
MotionToast.TOAST_DELETE,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
Sample Code for - Dark Color Toast
Success Toast
MotionToast.darkColorToast(this,"Upload Completed!",
MotionToast.TOAST_SUCCESS,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
Error Toast
MotionToast.darkColorToast(this,"Profile Update Failed!",
MotionToast.TOAST_ERROR,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
Warning Toast
MotionToast.darkColorToast(this,"Please fill all the details!",
MotionToast.TOAST_WARNING,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
Info Toast
MotionToast.darkColorToast(this,"This is information toast!",
MotionToast.TOAST_INFO,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
Delete Toast
MotionToast.darkColorToast(this,"Delete all history!",
MotionToast.TOAST_DELETE,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))