Show Amazing TOAST

Alt text

Alt text

Dependencies

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

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

Add the dependency :

implementation 'com.github.abuanzeh:AnzehLibrary:1.0.2'

Example

Get your Toast

 override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)

        ToasterMessage.showSuccessMessage(this,"SUCCESS")
        ToasterMessage.showErrorMessage(this,"ERROR")

    }

GitHub

View Github