A Custom Toast For Android With Kotlin

Show Amazing TOAST
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")
}