SimpleSnackbar.show(rootView,"textSnackBar",backgroundColor,textColor,isShortTime)
SimpleSnackbar.show(context, rootView, "textSnackBar", "font.ttf", backgroundColor, textColor, isShortTime)
SimpleSnackbar.show(rootView, "textSnackBar", "textAction", backgroundColor, textColor, textActionColor, isShortTime, object : CallbackSnackBar {
override fun onActionClick() {
// do your work
}
})
SimpleSnackbar.show(context,rootView, "textSnackBar", "textAction", backgroundColor, textColor, textActionColor, "font.ttf",false, object : CallbackSnackBar {
override fun onActionClick() {
// do your work
}
})