How to set margin in SnackBar
I'm trying to add margins at bottom, left and right to my SnackBar but I'm not able to get it.
That's what I tried:
var snackBar = Snackbar.make(binding.root,msg,Snackbar.LENGHT_LONG)
var snackbarLayout = snackBar.view. as Snackbar.SnackbarLayout
var layoutParams = snackbarLayout.layoutParams as CoordinatorLayout.LayoutParams
layoutParams.setMargins(32,0,32,32)
snackbarLayout.layoutParams = layoutParams
snackBar.show()
I get an error in snackbarLayout.layoutParams and its this:...