MDCFilledTextField with white background color iOS swift
Problem:
I want to create the textfield with MDCFilledTextField then want to fill the textfield bgcolor as white color.How to achieve that?
Solution:
@IBOutlet weak var myTextField: MDCFilledTextField!
myTextField.
myTextField.
The above solution will works for both normal and editing state.
If you set only in normal state then while editing it will not works.
Comments
Post a Comment