Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Spikeysanju/MotionToast
đ A Beautiful Motion Toast Library for Kotlin Android
https://github.com/Spikeysanju/MotionToast
android-app android-development android-library android-sdk android-ui androidkotlin androidstudio kotlin kotlin-android kotlin-library material-design materialdesign-library materialdesign-ui spikeysanju toastlibrary
Last synced: about 2 months ago
JSON representation
đ A Beautiful Motion Toast Library for Kotlin Android
- Host: GitHub
- URL: https://github.com/Spikeysanju/MotionToast
- Owner: Spikeysanju
- Created: 2020-03-13T19:42:26.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-29T18:22:23.000Z (8 months ago)
- Last Synced: 2024-10-15T09:24:56.914Z (about 2 months ago)
- Topics: android-app, android-development, android-library, android-sdk, android-ui, androidkotlin, androidstudio, kotlin, kotlin-android, kotlin-library, material-design, materialdesign-library, materialdesign-ui, spikeysanju, toastlibrary
- Language: Kotlin
- Homepage:
- Size: 427 KB
- Stars: 1,481
- Watchers: 22
- Forks: 131
- Open Issues: 31
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
- Awesome-Android-Open-Source-Projects - MotionToast
- awesome-kotlin - MotionToast - đ A Beautiful Motion Toast Library for Kotlin Android (Libraries)
- awesome-list - Spikeysanju/MotionToast - đ A Beautiful Motion Toast Library for Kotlin Android (Kotlin)
- Android-Awesome-Resources - Motion Toast
README
# Motion Toast - A Beautiful Toast Library for Android Kotlin đ¤ŠđĨ
[![platform](https://img.shields.io/badge/platform-Android-yellow.svg)](https://www.android.com)
[![API](https://img.shields.io/badge/API-21%2B-brightgreen.svg?style=flat)](https://android-arsenal.com/api?level=21)
[![GitHub license](https://img.shields.io/badge/License-Apache2.0-blue.svg)](LICENSE)
![GitHub stars](https://img.shields.io/github/stars/SpikeySanju/MotionToast?style=social)
![GitHub forks](https://img.shields.io/github/forks/SpikeySanju/MotionToast?label=Fork&style=social)
![Repo size](https://img.shields.io/github/repo-size/SpikeySanju/MotionToast?style=social)
![GitHub follow](https://img.shields.io/github/followers/SpikeySanju?label=Follow&style=social)
![Twitter Follow](https://img.shields.io/twitter/follow/sanjay_spikey?label=Twitter&style=social)A Beautiful Multipurpose Motion Toast Library in Android using Kotlin đ
![GitHub Cards Preview](https://github.com/Spikeysanju/Video_templates/blob/master/Github%20Card.png)
## Preview - Motion Toast đ
![gif](https://github.com/Spikeysanju/Video_templates/blob/master/Motion%20Toast.gif)## Preview - Color Motion Toast đ
![gif](https://github.com/Spikeysanju/Video_templates/blob/master/Toast%20Types-5.png)## Preview - Dark Toast đ
![gif](https://github.com/Spikeysanju/Video_templates/blob/master/Dark%20Toast.png)## Preview - Dark Color Toast đ
![gif](https://github.com/Spikeysanju/Video_templates/blob/master/Dark%20Color%20Toast.png)# 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.4'
}```
## 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,
"Hurray success đ"
"Upload Completed successfully!",
MotionToastStyle.SUCCESS,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
```### Error Toast
```
MotionToast.createToast(this,
"Failed âšī¸"
"Profile Update Failed!",
MotionToastStyle.ERROR,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
```
### Warning Toast
```
MotionToast.createToast(this,"Please fill all the details!",
MotionToastStyle.WARNING,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
```### Info Toast
```
MotionToast.createToast(this,"This is information toast!",
MotionToastStyle.INFO,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))```
### Delete Toast
```
MotionToast.createToast(this,"Delete all history!",
MotionToastStyle.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!",
MotionToastStyle.SUCCESS,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
```### Error Toast
```
MotionToast.createColorToast(this,"Profile Update Failed!",
MotionToastStyle.ERROR,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
```
### Warning Toast
```
MotionToast.createColorToast(this,"Please fill all the details!",
MotionToastStyle.WARNING,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
```### Info Toast
```
MotionToast.createColorToast(this,"This is information toast!",
MotionToastStyle.INFO,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))```
### Delete Toast
```
MotionToast.createColorToast(this,"Delete all history!",
MotionToastStyle.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!",
MotionToastStyle.SUCCESS,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
```### Error Toast
```
MotionToast.darkToast(this,"Profile Update Failed!",
MotionToastStyle.ERROR,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
```
### Warning Toast
```
MotionToast.darkToast(this,"Please fill all the details!",
MotionToastStyle.WARNING,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
```### Info Toast
```
MotionToast.darkToast(this,"This is information toast!",
MotionToastStyle.INFO,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))```
### Delete Toast
```
MotionToast.darkToast(this,"Delete all history!",
MotionToastStyle.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!",
MotionToastStyle.SUCCESS,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
```### Error Toast
```
MotionToast.darkColorToast(this,"Profile Update Failed!",
MotionToastStyle.ERROR,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
```
### Warning Toast
```
MotionToast.darkColorToast(this,"Please fill all the details!",
MotionToastStyle.WARNING,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))
```### Info Toast
```
MotionToast.darkColorToast(this,"This is information toast!",
MotionToastStyle.INFO,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))```
### Delete Toast
```
MotionToast.darkColorToast(this,"Delete all history!",
MotionToastStyle.DELETE,
MotionToast.GRAVITY_BOTTOM,
MotionToast.LONG_DURATION,
ResourcesCompat.getFont(this,R.font.helvetica_regular))```
# Donation
If this project help you reduce time to develop, you can give me a cup of coffee :)[![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.paypal.com/paypalme2/spikeysanju)
## License
```Copyright 2020 Spikey sanju
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 athttp://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.```