Show multi-colored Toast messages in android
It supports the following Toasts 1. Primary Toast 2. Success Toast 3. Warning Toast 4. Error Toast 5. Default Toast
MaterialToast.show(this, MaterialToast.PRIMARY, "Primary", MaterialToast.LONG)
MaterialToast.show(this, MaterialToast.SUCCESS, "success", MaterialToast.LONG)
MaterialToast.show(this, MaterialToast.WARNING, "Warning", MaterialToast.LONG)
MaterialToast.show(this, MaterialToast.ERROR, "Error", MaterialToast.LONG)
MaterialToast.show(this, MaterialToast.DEFAULT, "Default", MaterialToast.LONG)
implementation 'com.materialtoast:MaterialToast:1.0'