Skip to content

Latest commit

 

History

History
38 lines (22 loc) · 851 Bytes

WikiSnackBar.md

File metadata and controls

38 lines (22 loc) · 851 Bytes

Wiki SnackBar

  • Simple SnackBar
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
                }
            })