https://github.com/amanjeetsingh150/smartytoast
Android library with collection of some smart toasts designs.
https://github.com/amanjeetsingh150/smartytoast
android android-library toast ui-components
Last synced: 11 months ago
JSON representation
Android library with collection of some smart toasts designs.
- Host: GitHub
- URL: https://github.com/amanjeetsingh150/smartytoast
- Owner: amanjeetsingh150
- Created: 2017-06-04T14:22:56.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-10T09:21:59.000Z (about 9 years ago)
- Last Synced: 2025-03-21T11:22:29.714Z (over 1 year ago)
- Topics: android, android-library, toast, ui-components
- Language: Java
- Size: 129 KB
- Stars: 31
- Watchers: 4
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SmartyToast
Android library with collection of some smart toasts designs which will help in situations of following:-
- Completion of some work(Done!!)
- Errors
- Warnings(Done!!)
- Connection Established(Done!!)
- Saving completion(Saved!!)
- Update Status(Updating...)
[](https://jitpack.io/#amanjeetsingh150/SmartyToast) [](https://android-arsenal.com/details/1/5853)

DOWNLOAD
Add this to your root build.gradle file
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
Add this to your app module's build.gradle file
dependencies {
compile 'com.github.amanjeetsingh150:SmartyToast:1.0'
}
USAGE:
Java
SmartyToast.makeText(getApplicationContext(),"Your message",SmartyToast.LENGTH_SHORT,SmartyToast.DONE);
Last parameter here is the type of toast you want to show.
Available Parameters are:
License
Copyright 2017 Amanjeet Singh
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.