implementation 'com.tapadoo.android:alerter:2.0.4'
Alerter.create(BaseActivity.this)
.setIcon(R.drawable.ic_twotone_notifications_active_24)
.setBackgroundColorRes(R.color.colorAccent)
.setDuration(5000)
.enableSwipeToDismiss()
.enableProgress(true)
.setProgressColorRes(R.color.colorPrimary)
.setTitle("Alert Title")
.setText("Alert Text")
.show();