Material 设计带有白色背景的大纲文本字段

Material design Outline textfield with white background

我正在尝试使用 material 组件库并制作一个带有轮廓和背景颜色的文本字段,但这就是我得到的结果

白棋在界外。 你能帮帮我吗?

这是我的代码

    let imageView = UIImageView(frame: CGRect(x: 0, y: 0, width: 20, height: 20))
    imageView.image = UIImage(named: "user")
    txtfieldEmail.placeholderLabel.textColor = UIColor.gray
    txtfieldEmail.leftView = imageView
    txtfieldEmail.leftViewMode = .always

    //txtfieldEmail.backgroundColor = UIColor.white
    //txtfieldEmail.translatesAutoresizingMaskIntoConstraints = false
    //txtfieldEmail.clipsToBounds = true

    txtfieldEmail.layer.backgroundColor = UIColor.white.cgColor

    usernameTextFieldController = MDCTextInputControllerOutlined(textInput: txtfieldEmail)

在我不断编辑表单并添加更多内容之后,我最终发现我们应该在 MDCTextInputControllerOutlined 中定义样式

所以我所要做的就是 usernameTextFieldController?.borderFillColor = UIColor.white