SwiftUI - 材料组件,TextFields

时间:2021-06-03 09:48:36

标签: swiftui mdc-components uiviewrepresentable swiftui-form

我想在我的 SwiftUI 应用中使用 mdc 组件。 我使用协议 UIViewRepresentable 创建了一个类,但我想将高度修改为某个常量,或者删除内部填充。

func makeUIView(context: Context) -> MDCOutlinedTextField {
    let textField = MDCOutlinedTextField()
    
    textField.setOutlineColor(MyColor.greyLightUI, for: .normal)
    textField.setOutlineColor(MyColor.greyLightUI, for: .editing)
    textField.setFloatingLabelColor(MyColor.greyUI, for: .normal)
    textField.setFloatingLabelColor(MyColor.greyUI, for: .editing)
    textField.setNormalLabelColor(MyColor.greyUI, for: .normal)
    textField.setNormalLabelColor(MyColor.greyUI, for: .editing)
    textField.font = UIFont(name: "Montserrat-Normal", size: 14)
    textField.setTextColor(MyColor.darkUI, for: .normal)
    textField.setTextColor(MyColor.darkUI, for: .editing)
    
    textField.keyboardType = self.keyboardType
    
    return textField
}

0 个答案:

没有答案