Commit bfcb8114 by Daniel Dahan

fixed conflicts from PR 402

parents 554456a9 6ad5b6e5
......@@ -50,6 +50,11 @@ public class TextField : UITextField {
}
}
/**
This property adds a padding to placeholder y position animation
*/
public var placeholderAnimationPadding: CGFloat = 0
/// A property that accesses the backing layer's backgroundColor.
@IBInspectable public override var backgroundColor: UIColor? {
didSet {
......@@ -228,6 +233,9 @@ public class TextField : UITextField {
}
}
/// Vertical distance of detail label to divider
public var detailDistance: CGFloat = 8
/// Vertical distance for the detailLabel from the divider.
@IBInspectable public var detailVerticalDistanceFromDivider: CGFloat = 8 {
didSet {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment