How to place TextField divider under LeftView using Cosmicmind / Material TextField

I am using TextField using material library. This is what is implemented by default (the Divider is just below the text area).enter image description here

Is there a way to put a divider under the LeftView / Image and reduce the spacing between the image and the text (like this). enter image description here

Any help would be appreciated.

+3


source to share


1 answer


this might be the solution to your problem .....



let leftView = UIImageView()
leftView.image = Icon.phone?.tint(with: Color.blue.base)

textField.leftView = leftView
textField.leftViewMode = .always

      

0


source







All Articles