Fix whitespace

pull/2158/head
Hwee-Boon Yar 4 years ago
parent e696ce133c
commit bec5b5ea49
  1. 14
      AlphaWallet/UI/Form/SliderTextFieldRow.swift

@ -82,7 +82,7 @@ open class SliderTextFieldCell: Cell<Float>, CellType, UITextFieldDelegate {
contentView.addSubview(slider)
addConstraints()
}
textField.leftView = .spacerWidth(16)
textField.leftViewMode = .always
textField.rightView = .spacerWidth(16)
@ -94,7 +94,7 @@ open class SliderTextFieldCell: Cell<Float>, CellType, UITextFieldDelegate {
textField.backgroundColor = DataEntry.Color.searchTextFieldBackground
textField.layer.borderColor = UIColor.clear.cgColor
textField.cornerRadius = DataEntry.Metric.cornerRadius
selectionStyle = .none
slider.minimumValue = sliderRow.minimumValue
slider.maximumValue = sliderRow.maximumValue
@ -117,7 +117,7 @@ open class SliderTextFieldCell: Cell<Float>, CellType, UITextFieldDelegate {
textField.heightAnchor.constraint(equalToConstant: 30).isActive = true
textField.widthAnchor.constraint(equalToConstant: 140).isActive = true
let views: [String: Any] = ["titleLabel": titleLabel, "textField": textField, "slider": slider]
let metrics = ["vPadding": 12, "spacing": 12.0]
if shouldShowTitle {
@ -172,18 +172,18 @@ open class SliderTextFieldCell: Cell<Float>, CellType, UITextFieldDelegate {
row.value = value
slider.value = value
}
open func textFieldDidEndEditing(_ textField: UITextField) {
textField.layer.borderColor = UIColor.clear.cgColor
textField.backgroundColor = DataEntry.Color.searchTextFieldBackground
textField.dropShadow(color: .clear, radius: DataEntry.Metric.shadowRadius)
}
open func textFieldDidBeginEditing(_ textField: UITextField) {
textField.backgroundColor = Colors.appWhite
textField.layer.borderColor = DataEntry.Color.textFieldShadowWhileEditing.cgColor
textField.dropShadow(color: DataEntry.Color.textFieldShadowWhileEditing, radius: DataEntry.Metric.shadowRadius)
}

Loading…
Cancel
Save