You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MHColorsDialog(this)
.addColors(ArrayList(arrayListOf(R.color.white,R.color.gray)), ColorsPosition.END)
.setColorListener { color, colorHex ->
// color and colorHex are the chosen color
}
.show()
The text was updated successfully, but these errors were encountered:
Could you describe the output, notice that addColors method will keep the default colors and add your colors in at the end of the list so normally you will have the new white and gray colors as the last colors when you swipe
MHColorsDialog(this)
.addColors(ArrayList(arrayListOf(R.color.white,R.color.gray)), ColorsPosition.END)
.setColorListener { color, colorHex ->
// color and colorHex are the chosen color
}
.show()
The text was updated successfully, but these errors were encountered: