Closed dunaevigils closed 1 year ago
I created a fork and did the following change on OtpTextView
fun setTypeface(typeface: Typeface?) {
itemViews?.let { itemViews ->
for (itemView in itemViews) {
itemView.textView!!.typeface = typeface
}
}
}
And I set a blank font like the one below.
How can i toggle the visibility of the numbers?
I need to toggle between numbers and bullets, when user do not want to show the numbers in the rectangles.
Thank you